aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ar71xx/files-2.6.39/arch
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2012-01-24 18:40:38 +0000
committerGabor Juhos <juhosg@openwrt.org>2012-01-24 18:40:38 +0000
commit2ca85663eae77c4eae862507bab7480bfde589df (patch)
tree74f47f3c3afdf1b356aef0c37579fa8109c12bba /target/linux/ar71xx/files-2.6.39/arch
parent0353e85c2674808e88256407d876e8e5551ea496 (diff)
downloadmaster-187ad058-2ca85663eae77c4eae862507bab7480bfde589df.tar.gz
master-187ad058-2ca85663eae77c4eae862507bab7480bfde589df.tar.bz2
master-187ad058-2ca85663eae77c4eae862507bab7480bfde589df.zip
ar71xx: fix the AP/Router LED definitons on MZK-W300NH
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29897 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ar71xx/files-2.6.39/arch')
-rw-r--r--target/linux/ar71xx/files-2.6.39/arch/mips/ar71xx/mach-mzk-w300nh.c14
1 files changed, 6 insertions, 8 deletions
diff --git a/target/linux/ar71xx/files-2.6.39/arch/mips/ar71xx/mach-mzk-w300nh.c b/target/linux/ar71xx/files-2.6.39/arch/mips/ar71xx/mach-mzk-w300nh.c
index ca98c7c041..0ce1f194b8 100644
--- a/target/linux/ar71xx/files-2.6.39/arch/mips/ar71xx/mach-mzk-w300nh.c
+++ b/target/linux/ar71xx/files-2.6.39/arch/mips/ar71xx/mach-mzk-w300nh.c
@@ -21,8 +21,8 @@
#define MZK_W300NH_GPIO_LED_STATUS 1
#define MZK_W300NH_GPIO_LED_WPS 3
#define MZK_W300NH_GPIO_LED_WLAN 6
-#define MZK_W300NH_GPIO_LED_AP 15
-#define MZK_W300NH_GPIO_LED_ROUTER 16
+#define MZK_W300NH_GPIO_LED_AP_GREEN 15
+#define MZK_W300NH_GPIO_LED_AP_AMBER 16
#define MZK_W300NH_GPIO_BTN_APROUTER 5
#define MZK_W300NH_GPIO_BTN_WPS 12
@@ -45,13 +45,11 @@ static struct gpio_led mzk_w300nh_leds_gpio[] __initdata = {
.gpio = MZK_W300NH_GPIO_LED_WLAN,
.active_low = 1,
}, {
- .name = "planex:green:ap",
- .gpio = MZK_W300NH_GPIO_LED_AP,
- .active_low = 1,
+ .name = "planex:green:aprouter",
+ .gpio = MZK_W300NH_GPIO_LED_AP_GREEN,
}, {
- .name = "planex:green:router",
- .gpio = MZK_W300NH_GPIO_LED_ROUTER,
- .active_low = 1,
+ .name = "planex:amber:aprouter",
+ .gpio = MZK_W300NH_GPIO_LED_AP_AMBER,
}
};