bcm53xx: fix fallback code for picking status LED

Looking for a wrong LED file name was stopping this code from find any
LED. This affects devices with only a red/amber power LED.

Fixes: 3aaee1ba02 ("bcm53xx: failsafe support")
Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
This commit is contained in:
Rafał Miłecki 2018-02-27 16:49:31 +01:00
parent 4db583b9c2
commit 7dcbe0e22d
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ get_status_led() {
fi;
# Now just pick any power LED
status_led_file=$(find /sys/class/leds/ -name "*:power:*" | head -n1)
status_led_file=$(find /sys/class/leds/ -name "*:power" | head -n1)
if [ -d "$status_led_file" ]; then
status_led=$(basename $status_led_file)
return