Skip to content
Snippets Groups Projects
Commit aad5f01a authored by nbd's avatar nbd
Browse files

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: default avatarMichael J. Bazzinotti <mbazzinotti@gmail.com>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@45634 3c298f89-4303-0410-b956-a3cf2f4a3e73
parent 714c8151
No related branches found
No related tags found
No related merge requests found
......@@ -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,
},
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment