1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-01 00:41:41 +03:00

ar71xx: reduce button threshold value on the NBG460 board

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21076 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
juhosg 2010-04-21 19:07:23 +00:00
parent e1b44378be
commit f74b974c32

View File

@ -112,14 +112,14 @@ static struct gpio_button nbg460n_gpio_buttons[] __initdata = {
.desc = "reset",
.type = EV_KEY,
.code = KEY_RESTART,
.threshold = 5,
.threshold = 3,
.gpio = NBG460N_GPIO_BTN_RESET,
.active_low = 1,
}, {
.desc = "wps",
.type = EV_KEY,
.code = KEY_WPS_BUTTON,
.threshold = 5,
.threshold = 3,
.gpio = NBG460N_GPIO_BTN_WPS,
.active_low = 1,
}