diff options
author | Dustin Gathmann <dzsoftware@posteo.org> | 2020-05-21 00:13:43 +0200 |
---|---|---|
committer | Adrian Schmutzler <freifunk@adrianschmutzler.de> | 2020-07-23 17:39:29 +0200 |
commit | 284cd7d18e4305f20304289144a887b984eb34a4 (patch) | |
tree | 19ca5f1d053d1ccbb6d6bf03d3d9c2c7c9382399 | |
parent | 2ca5a386eeefb11de15a9b359ae2769f775d58c9 (diff) | |
download | upstream-284cd7d18e4305f20304289144a887b984eb34a4.tar.gz upstream-284cd7d18e4305f20304289144a887b984eb34a4.tar.bz2 upstream-284cd7d18e4305f20304289144a887b984eb34a4.zip |
lantiq/xrx200: make WLAN button responsive on Fritzbox 3370
Pressing the 'WLAN' button should enable/disable wireless activity.
However, on the Fritzbox 3370 this doesn't have an effect.
This patch changes the mapping of the physical WLAN button, so a button
press will emit an action for the 'rfkill' key instead of 'wlan'.
Apparently, this is what stock OpenWRT expects, and also what is
implemented for most other devices.
Signed-off-by: Dustin Gathmann <dzsoftware@posteo.org>
(cherry picked from commit a53bf63756ef2a266ae5f3b3507eeb7382b4cdc9)
-rw-r--r-- | target/linux/lantiq/files-4.14/arch/mips/boot/dts/FRITZ3370-REV2.dtsi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/lantiq/files-4.14/arch/mips/boot/dts/FRITZ3370-REV2.dtsi b/target/linux/lantiq/files-4.14/arch/mips/boot/dts/FRITZ3370-REV2.dtsi index e86e544945..f3ce0adfff 100644 --- a/target/linux/lantiq/files-4.14/arch/mips/boot/dts/FRITZ3370-REV2.dtsi +++ b/target/linux/lantiq/files-4.14/arch/mips/boot/dts/FRITZ3370-REV2.dtsi @@ -46,7 +46,7 @@ wifi { label = "wlan"; gpios = <&gpio 29 GPIO_ACTIVE_HIGH>; - linux,code = <KEY_WLAN>; + linux,code = <KEY_RFKILL>; }; }; |