diff options
author | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2011-12-31 13:54:11 +0000 |
---|---|---|
committer | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2011-12-31 13:54:11 +0000 |
commit | 096af0d2e890ff70e1c9da326f37ea4382264c3f (patch) | |
tree | 2ed0cb146f728df908132447b5ebcf9f9486b1ad /target/linux | |
parent | c1be68167224a7800a544c5f1c07dc9fd50f495c (diff) |
ar71xx: fix LEDs on the WRT400N
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29624 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux')
-rwxr-xr-x | target/linux/ar71xx/base-files/etc/diag.sh | 2 | ||||
-rw-r--r-- | target/linux/ar71xx/files/arch/mips/ar71xx/mach-wrt400n.c | 23 |
2 files changed, 13 insertions, 12 deletions
diff --git a/target/linux/ar71xx/base-files/etc/diag.sh b/target/linux/ar71xx/base-files/etc/diag.sh index 855d3a40b..6c40f62e8 100755 --- a/target/linux/ar71xx/base-files/etc/diag.sh +++ b/target/linux/ar71xx/base-files/etc/diag.sh @@ -127,7 +127,7 @@ get_status_led() { status_led="wp543:green:diag" ;; wrt400n) - status_led="wrt400n:green:status" + status_led="wrt400n:blue:wps" ;; wrt160nl) status_led="wrt160nl:blue:wps" diff --git a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-wrt400n.c b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-wrt400n.c index 8bd82b983..6d8d55faf 100644 --- a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-wrt400n.c +++ b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-wrt400n.c @@ -21,10 +21,10 @@ #include "dev-gpio-buttons.h" #include "dev-leds-gpio.h" -#define WRT400N_GPIO_LED_ORANGE 5 -#define WRT400N_GPIO_LED_GREEN 4 -#define WRT400N_GPIO_LED_POWER 1 -#define WRT400N_GPIO_LED_WLAN 0 +#define WRT400N_GPIO_LED_POWER 1 +#define WRT400N_GPIO_LED_WPS_BLUE 4 +#define WRT400N_GPIO_LED_WPS_AMBER 5 +#define WRT400N_GPIO_LED_WLAN 6 #define WRT400N_GPIO_BTN_RESET 8 #define WRT400N_GPIO_BTN_WLSEC 3 @@ -93,21 +93,22 @@ static struct flash_platform_data wrt400n_flash_data = { static struct gpio_led wrt400n_leds_gpio[] __initdata = { { - .name = "wrt400n:green:status", - .gpio = WRT400N_GPIO_LED_GREEN, + .name = "wrt400n:blue:wps", + .gpio = WRT400N_GPIO_LED_WPS_BLUE, .active_low = 1, }, { - .name = "wrt400n:amber:aoss", - .gpio = WRT400N_GPIO_LED_ORANGE, + .name = "wrt400n:amber:wps", + .gpio = WRT400N_GPIO_LED_WPS_AMBER, .active_low = 1, }, { - .name = "wrt400n:green:wlan", + .name = "wrt400n:blue:wlan", .gpio = WRT400N_GPIO_LED_WLAN, .active_low = 1, }, { - .name = "wrt400n:green:power", + .name = "wrt400n:blue:power", .gpio = WRT400N_GPIO_LED_POWER, - .active_low = 1, + .active_low = 0, + .default_trigger = "default-on", } }; |