From: juhosg Date: Sat, 19 Dec 2009 07:35:49 +0000 (+0000) Subject: ar71xx: Fix LED active_low for the TL-WR1043ND board X-Git-Url: https://git.rohieb.name/openwrt.git/commitdiff_plain/524ae98603517220864a51d9267f5465af9c0e98?hp=aa543581d1822bf1dd954ff86723673ccc339ab4 ar71xx: Fix LED active_low for the TL-WR1043ND board This fixes the LED active_low's for the TP-Link wr1043nd board Signed-off-by: Andrew Tarabaras git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18844 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-tl-wr1043nd.c b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-tl-wr1043nd.c index f77d25969..b08383d49 100644 --- a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-tl-wr1043nd.c +++ b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-tl-wr1043nd.c @@ -70,19 +70,19 @@ static struct gpio_led tl_wr1043nd_leds_gpio[] __initdata = { { .name = "tl-wr1043nd:green:usb", .gpio = TL_WR1043ND_GPIO_LED_USB, - .active_low = 0, + .active_low = 1, }, { .name = "tl-wr1043nd:green:system", .gpio = TL_WR1043ND_GPIO_LED_SYSTEM, - .active_low = 0, + .active_low = 1, }, { .name = "tl-wr1043nd:green:qss", .gpio = TL_WR1043ND_GPIO_LED_QSS, - .active_low = 1, + .active_low = 0, }, { .name = "tl-wr1043nd:green:wlan", .gpio = TL_WR1043ND_GPIO_LED_WLAN, - .active_low = 0, + .active_low = 1, } };