diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2010-01-13 10:18:30 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2010-01-13 10:18:30 +0000 |
commit | 3dc1073b53fada9ec07144902122481ab96692d1 (patch) | |
tree | 612a9c532a52c4dcd4fe6cef97f50d1e49ad5f9d /target/linux/ar71xx/files/arch/mips/ar71xx/mach-mzk-w300nh.c | |
parent | 21742847bd842fd7a2e7ba60854b38e09a287260 (diff) | |
download | mtk-20170518-3dc1073b53fada9ec07144902122481ab96692d1.zip mtk-20170518-3dc1073b53fada9ec07144902122481ab96692d1.tar.gz mtk-20170518-3dc1073b53fada9ec07144902122481ab96692d1.tar.bz2 |
ar71xx: reduce button threshold values
SVN-Revision: 19116
Diffstat (limited to 'target/linux/ar71xx/files/arch/mips/ar71xx/mach-mzk-w300nh.c')
-rw-r--r-- | target/linux/ar71xx/files/arch/mips/ar71xx/mach-mzk-w300nh.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-mzk-w300nh.c b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-mzk-w300nh.c index 88a3bd1..3a38c82 100644 --- a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-mzk-w300nh.c +++ b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-mzk-w300nh.c @@ -105,21 +105,21 @@ static struct gpio_button mzk_w300nh_gpio_buttons[] __initdata = { .desc = "reset", .type = EV_KEY, .code = BTN_0, - .threshold = 5, + .threshold = 3, .gpio = MZK_W300NH_GPIO_BTN_RESET, .active_low = 1, }, { .desc = "wps", .type = EV_KEY, .code = BTN_1, - .threshold = 5, + .threshold = 3, .gpio = MZK_W300NH_GPIO_BTN_WPS, .active_low = 1, }, { .desc = "aprouter", .type = EV_KEY, .code = BTN_2, - .threshold = 5, + .threshold = 3, .gpio = MZK_W300NH_GPIO_BTN_APROUTER, .active_low = 0, } |