1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-10-20 06:28:12 +02:00

ar71xx: use the button for WPS control on the DB120

SVN-Revision: 28990
This commit is contained in:
Gabor Juhos 2011-11-12 12:50:20 +00:00
parent 4555be2bec
commit 5ad763075e

@ -28,7 +28,7 @@
#define DB120_GPIO_LED_STATUS 14 #define DB120_GPIO_LED_STATUS 14
#define DB120_GPIO_LED_WPS 15 #define DB120_GPIO_LED_WPS 15
#define DB120_GPIO_BTN_SW1 16 #define DB120_GPIO_BTN_WPS 16
#define DB120_MAC0_OFFSET 0 #define DB120_MAC0_OFFSET 0
#define DB120_MAC1_OFFSET 6 #define DB120_MAC1_OFFSET 6
@ -103,11 +103,11 @@ static struct gpio_led db120_leds_gpio[] __initdata = {
static struct gpio_keys_button db120_gpio_keys[] __initdata = { static struct gpio_keys_button db120_gpio_keys[] __initdata = {
{ {
.desc = "sw1", .desc = "WPS button",
.type = EV_KEY, .type = EV_KEY,
.code = BTN_0, .code = KEY_WPS_BUTTON,
.debounce_interval = DB120_KEYS_DEBOUNCE_INTERVAL, .debounce_interval = DB120_KEYS_DEBOUNCE_INTERVAL,
.gpio = DB120_GPIO_BTN_SW1, .gpio = DB120_GPIO_BTN_WPS,
.active_low = 1, .active_low = 1,
} }
}; };