summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjuhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73>2011-01-10 18:15:47 +0000
committerjuhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73>2011-01-10 18:15:47 +0000
commit0ecedcb90065a9ac341c03026444c38c01a954d1 (patch)
treebf2d99b082e034f599b5f6068a0d64b25ebaa5c1
parentd7933a9d76743da64d449ca9577854bc6fc0a587 (diff)
ar71xx: fix wrong names of the WPS LED/button
Reported-by: Nuno Gonçalves git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24961 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r--target/linux/ar71xx/files/arch/mips/ar71xx/mach-dir-825-b1.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-dir-825-b1.c b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-dir-825-b1.c
index a36d2d09d..30d09cbd9 100644
--- a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-dir-825-b1.c
+++ b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-dir-825-b1.c
@@ -29,12 +29,12 @@
#define DIR825B1_GPIO_LED_BLUE_USB 0
#define DIR825B1_GPIO_LED_ORANGE_POWER 1
#define DIR825B1_GPIO_LED_BLUE_POWER 2
-#define DIR825B1_GPIO_LED_BLUE_POWERSAVE 4
+#define DIR825B1_GPIO_LED_BLUE_WPS 4
#define DIR825B1_GPIO_LED_ORANGE_PLANET 6
#define DIR825B1_GPIO_LED_BLUE_PLANET 11
#define DIR825B1_GPIO_BTN_RESET 3
-#define DIR825B1_GPIO_BTN_POWERSAVE 8
+#define DIR825B1_GPIO_BTN_WPS 8
#define DIR825B1_GPIO_RTL8366_SDA 5
#define DIR825B1_GPIO_RTL8366_SCK 7
@@ -98,8 +98,8 @@ static struct gpio_led dir825b1_leds_gpio[] __initdata = {
.gpio = DIR825B1_GPIO_LED_BLUE_POWER,
.active_low = 1,
}, {
- .name = "dir825b1:blue:powersave",
- .gpio = DIR825B1_GPIO_LED_BLUE_POWERSAVE,
+ .name = "dir825b1:blue:wps",
+ .gpio = DIR825B1_GPIO_LED_BLUE_WPS,
.active_low = 1,
}, {
.name = "dir825b1:orange:planet",
@@ -121,11 +121,11 @@ static struct gpio_button dir825b1_gpio_buttons[] __initdata = {
.gpio = DIR825B1_GPIO_BTN_RESET,
.active_low = 1,
}, {
- .desc = "powersave",
+ .desc = "wps",
.type = EV_KEY,
- .code = BTN_1,
+ .code = KEY_WPS_BUTTON,
.threshold = 3,
- .gpio = DIR825B1_GPIO_BTN_POWERSAVE,
+ .gpio = DIR825B1_GPIO_BTN_WPS,
.active_low = 1,
}
};