diff options
author | David Bauer <mail@david-bauer.net> | 2020-03-01 18:36:17 +0100 |
---|---|---|
committer | David Bauer <mail@david-bauer.net> | 2020-03-01 18:42:05 +0100 |
commit | ef391799e3821dad0654a95bfeaf67e12f232f9e (patch) | |
tree | 1749731ef9c1a2cf8c07fa362e5060c210b8cfe3 /target | |
parent | c56ed72d2bc6dbee3ff82b4bd42e1768f1a2c737 (diff) | |
download | upstream-ef391799e3821dad0654a95bfeaf67e12f232f9e.tar.gz upstream-ef391799e3821dad0654a95bfeaf67e12f232f9e.tar.bz2 upstream-ef391799e3821dad0654a95bfeaf67e12f232f9e.zip |
ar71xx: correct AVM FRITZ Repeater 450E WPS button flag
The AVM FRITZ!WLAN Repeater 450E's WPS button is not active low.
Correct the active low flag to avoid unintenional activation of
failsafe mode on boot.
Signed-off-by: David Bauer <mail@david-bauer.net>
(cherry picked from commit 1d4f2ca6105698fde3b997c32e7e41f080c79a15)
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/ar71xx/files/arch/mips/ath79/mach-fritz450e.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/ar71xx/files/arch/mips/ath79/mach-fritz450e.c b/target/linux/ar71xx/files/arch/mips/ath79/mach-fritz450e.c index 83127e4c64..5bded81a4d 100644 --- a/target/linux/ar71xx/files/arch/mips/ath79/mach-fritz450e.c +++ b/target/linux/ar71xx/files/arch/mips/ath79/mach-fritz450e.c @@ -115,7 +115,7 @@ static struct gpio_keys_button fritz450E_gpio_keys[] __initdata = { .code = KEY_WPS_BUTTON, .debounce_interval = FRITZ450E_KEYS_DEBOUNCE_INTERVAL, .gpio = FRITZ450E_GPIO_BTN_WPS, - .active_low = 1, + .active_low = 0, } }; |