summaryrefslogtreecommitdiffstats
path: root/target
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2009-12-19 07:35:49 +0000
committerGabor Juhos <juhosg@openwrt.org>2009-12-19 07:35:49 +0000
commit6fcb5f6294b7f858bfcc1afb4118fa0df4bd1e78 (patch)
tree0b2352de7eff534507938ed5a15878509d858bfe /target
parent9ca044a009a87179e8ed5f0fb8eaf8f921035722 (diff)
downloadmaster-31e0f0ae-6fcb5f6294b7f858bfcc1afb4118fa0df4bd1e78.tar.gz
master-31e0f0ae-6fcb5f6294b7f858bfcc1afb4118fa0df4bd1e78.tar.bz2
master-31e0f0ae-6fcb5f6294b7f858bfcc1afb4118fa0df4bd1e78.zip
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 <andrew@advancedtechnologies.com.au> SVN-Revision: 18844
Diffstat (limited to 'target')
-rw-r--r--target/linux/ar71xx/files/arch/mips/ar71xx/mach-tl-wr1043nd.c8
1 files changed, 4 insertions, 4 deletions
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 f77d259692..b08383d494 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,
}
};