summaryrefslogtreecommitdiffstats
path: root/target/linux
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2009-12-18 12:57:12 +0000
committerGabor Juhos <juhosg@openwrt.org>2009-12-18 12:57:12 +0000
commit17ee33ebb94270cc9b4d3776bbc0021dff3e6d19 (patch)
tree3c0951145aff9a50ae0ad1b7b3f2e0b8290af5a5 /target/linux
parenta733e30bf6963cccc0b058432044e42ee31af27a (diff)
downloadmaster-31e0f0ae-17ee33ebb94270cc9b4d3776bbc0021dff3e6d19.tar.gz
master-31e0f0ae-17ee33ebb94270cc9b4d3776bbc0021dff3e6d19.tar.bz2
master-31e0f0ae-17ee33ebb94270cc9b4d3776bbc0021dff3e6d19.zip
tl-wr1043nd: Register missing leds.
This adds the folowing for the TP-Link wr1043nd board 1. USB and WLAN LEDS 2. Change QSS LED from red to green 3. Fix polarity of the System LED Signed-off-by: Andrew Tarabaras <andrew@advancedtechnologies.com.au> SVN-Revision: 18821
Diffstat (limited to 'target/linux')
-rw-r--r--target/linux/ar71xx/files/arch/mips/ar71xx/mach-tl-wr1043nd.c14
1 files changed, 12 insertions, 2 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 034427d1bc..f77d259692 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
@@ -21,8 +21,10 @@
#include "dev-m25p80.h"
#include "dev-ar913x-wmac.h"
+#define TL_WR1043ND_GPIO_LED_USB 1
#define TL_WR1043ND_GPIO_LED_SYSTEM 2
#define TL_WR1043ND_GPIO_LED_QSS 5
+#define TL_WR1043ND_GPIO_LED_WLAN 9
#define TL_WR1043ND_GPIO_BTN_RESET 3
#define TL_WR1043ND_GPIO_BTN_QSS 7
@@ -66,13 +68,21 @@ static struct flash_platform_data tl_wr1043nd_flash_data = {
static struct gpio_led tl_wr1043nd_leds_gpio[] __initdata = {
{
+ .name = "tl-wr1043nd:green:usb",
+ .gpio = TL_WR1043ND_GPIO_LED_USB,
+ .active_low = 0,
+ }, {
.name = "tl-wr1043nd:green:system",
.gpio = TL_WR1043ND_GPIO_LED_SYSTEM,
- .active_low = 1,
+ .active_low = 0,
}, {
- .name = "tl-wr1043nd:red:qss",
+ .name = "tl-wr1043nd:green:qss",
.gpio = TL_WR1043ND_GPIO_LED_QSS,
.active_low = 1,
+ }, {
+ .name = "tl-wr1043nd:green:wlan",
+ .gpio = TL_WR1043ND_GPIO_LED_WLAN,
+ .active_low = 0,
}
};