diff options
author | Felix Fietkau <nbd@openwrt.org> | 2015-05-08 12:23:53 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2015-05-08 12:23:53 +0000 |
commit | b1380ebae3589525a25fe24129bda77ed3cffe1c (patch) | |
tree | 171b412ed882ec9bde42a8fbc3b13474a62c4e1b /target/linux/ar71xx | |
parent | 6413f40e96cc4ff184d814684c2bf7bc1b3125b9 (diff) | |
download | upstream-b1380ebae3589525a25fe24129bda77ed3cffe1c.tar.gz upstream-b1380ebae3589525a25fe24129bda77ed3cffe1c.tar.bz2 upstream-b1380ebae3589525a25fe24129bda77ed3cffe1c.zip |
ar71xx: set all buttons to be active_low on wnr2000-v4
Originally pressing a button would trigger a release state and vice-versa,
as observed from hotplug.d.
Signed-off-by: Michael J. Bazzinotti <mbazzinotti@gmail.com>
SVN-Revision: 45634
Diffstat (limited to 'target/linux/ar71xx')
-rw-r--r-- | target/linux/ar71xx/files/arch/mips/ath79/mach-wnr2000-v4.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/target/linux/ar71xx/files/arch/mips/ath79/mach-wnr2000-v4.c b/target/linux/ar71xx/files/arch/mips/ath79/mach-wnr2000-v4.c index df0bf0ed27..cc478e6152 100644 --- a/target/linux/ar71xx/files/arch/mips/ath79/mach-wnr2000-v4.c +++ b/target/linux/ar71xx/files/arch/mips/ath79/mach-wnr2000-v4.c @@ -102,6 +102,7 @@ static struct gpio_keys_button wnr2000v4_gpio_keys[] __initdata = { .code = KEY_WPS_BUTTON, .debounce_interval = WNR2000V4_KEYS_DEBOUNCE_INTERVAL, .gpio = WNR2000V4_GPIO_BTN_WPS, + .active_low = 1, }, { .desc = "Reset button", @@ -109,6 +110,7 @@ static struct gpio_keys_button wnr2000v4_gpio_keys[] __initdata = { .code = KEY_RESTART, .debounce_interval = WNR2000V4_KEYS_DEBOUNCE_INTERVAL, .gpio = WNR2000V4_GPIO_BTN_RESET, + .active_low = 1, }, { .desc = "WLAN button", @@ -116,6 +118,7 @@ static struct gpio_keys_button wnr2000v4_gpio_keys[] __initdata = { .code = KEY_WLAN, .debounce_interval = WNR2000V4_KEYS_DEBOUNCE_INTERVAL, .gpio = WNR2000V4_GPIO_BTN_WLAN, + .active_low = 1, }, }; |