From: Sergey Ryazanov Date: Thu, 25 Oct 2018 22:22:37 +0000 (+0300) Subject: ar71xx: fix RouterBOARD Power LED default state X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=8baad26d01dd1f7c6b30a9eadb68596ee4b4d51f;p=openwrt%2Fstaging%2Fblogic.git ar71xx: fix RouterBOARD Power LED default state RouterBOARD(s) bootloader actully turns Power LED off just before it starts the kernel. So we need to set the LED default status to On instead of Keep in order to keep LED on during kernel boot. This change fixes Power LED off during the kernel boot on the RB91x and SXT Lite boards. Fixes: 6cad8ee0bd ("ar71xx: keep the RouterBOARD Power LED in On state") CC: Mathias Kresin Signed-off-by: Sergey Ryazanov --- diff --git a/target/linux/ar71xx/files/arch/mips/ath79/mach-rb91x.c b/target/linux/ar71xx/files/arch/mips/ath79/mach-rb91x.c index e240c3ad43cf..962071896262 100644 --- a/target/linux/ar71xx/files/arch/mips/ath79/mach-rb91x.c +++ b/target/linux/ar71xx/files/arch/mips/ath79/mach-rb91x.c @@ -219,7 +219,7 @@ static struct gpio_led rb711gr100_leds[] __initdata = { .name = "rb:green:power", .gpio = RB91X_GPIO_LED_POWER, .active_low = 0, - .default_state = LEDS_GPIO_DEFSTATE_KEEP, + .default_state = LEDS_GPIO_DEFSTATE_ON, }, }; diff --git a/target/linux/ar71xx/files/arch/mips/ath79/mach-rbsxtlite.c b/target/linux/ar71xx/files/arch/mips/ath79/mach-rbsxtlite.c index d0e6baea49e8..7eb0e54151b0 100644 --- a/target/linux/ar71xx/files/arch/mips/ath79/mach-rbsxtlite.c +++ b/target/linux/ar71xx/files/arch/mips/ath79/mach-rbsxtlite.c @@ -115,7 +115,7 @@ static struct gpio_led rbsxtlite_leds_gpio[] __initdata = { { .name = "rb:green:power", .gpio = SXTLITE_GPIO_LED_POWER, - .default_state = LEDS_GPIO_DEFSTATE_KEEP, + .default_state = LEDS_GPIO_DEFSTATE_ON, }, };