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 <luka@openwrt.org> SVN-Revision: 37131
This commit is contained in:
parent
6988613f7a
commit
c9926f77b4
1 changed files with 3 additions and 3 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue