From: Luka Perkov Date: Tue, 2 Jul 2013 10:45:32 +0000 (+0000) Subject: ar71xx: Buffalo WZR-HP-AG300H (600DHP) change button type X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;hb=cad9d9d59ecfea05028c6ea8df14f36a6f261bbd ar71xx: Buffalo WZR-HP-AG300H (600DHP) change button type switch buttons should be declared as switch so the failsafe shell is not triggered by accident in procd Signed-off-by: Luka Perkov SVN-Revision: 37131 --- diff --git a/target/linux/ar71xx/files/arch/mips/ath79/mach-wzr-hp-ag300h.c b/target/linux/ar71xx/files/arch/mips/ath79/mach-wzr-hp-ag300h.c index 9ba5ecd2ea..824ac52d32 100644 --- a/target/linux/ar71xx/files/arch/mips/ath79/mach-wzr-hp-ag300h.c +++ b/target/linux/ar71xx/files/arch/mips/ath79/mach-wzr-hp-ag300h.c @@ -140,21 +140,21 @@ static struct gpio_keys_button wzrhpag300h_gpio_keys[] __initdata = { .active_low = 1, }, { .desc = "router_auto", - .type = EV_KEY, + .type = EV_SW, .code = BTN_6, .debounce_interval = WZRHPAG300H_KEYS_DEBOUNCE_INTERVAL, .gpio = 6, .active_low = 1, }, { .desc = "router_off", - .type = EV_KEY, + .type = EV_SW, .code = BTN_5, .debounce_interval = WZRHPAG300H_KEYS_DEBOUNCE_INTERVAL, .gpio = 7, .active_low = 1, }, { .desc = "movie_engine", - .type = EV_KEY, + .type = EV_SW, .code = BTN_7, .debounce_interval = WZRHPAG300H_KEYS_DEBOUNCE_INTERVAL, .gpio = 8,