aboutsummaryrefslogtreecommitdiffstats
path: root/target
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2010-04-21 19:07:23 +0000
committerGabor Juhos <juhosg@openwrt.org>2010-04-21 19:07:23 +0000
commit0e3f38c6e13f3b79816c5e180b03e4b08df9daae (patch)
tree155abb2b2f84ad4b56c1b8004c3d755b95f74c22 /target
parent21d31612c3b2289ef93fdfc1a45da79e1c26658b (diff)
downloadupstream-0e3f38c6e13f3b79816c5e180b03e4b08df9daae.tar.gz
upstream-0e3f38c6e13f3b79816c5e180b03e4b08df9daae.tar.bz2
upstream-0e3f38c6e13f3b79816c5e180b03e4b08df9daae.zip
ar71xx: reduce button threshold value on the NBG460 board
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21076 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target')
-rw-r--r--target/linux/ar71xx/files/arch/mips/ar71xx/mach-nbg460n.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-nbg460n.c b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-nbg460n.c
index fea08259ca..0b7116f1d6 100644
--- a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-nbg460n.c
+++ b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-nbg460n.c
@@ -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,
}