diff options
author | David Bauer <mail@david-bauer.net> | 2022-01-14 22:03:24 +0100 |
---|---|---|
committer | David Bauer <mail@david-bauer.net> | 2022-01-14 22:12:53 +0100 |
commit | 31545378641d45f5fac5ffc408a31b700b80121f (patch) | |
tree | 43283c301ced169852172a42e3e73a6214bf30f2 /target/linux/lantiq/files | |
parent | 2a31e9ca975d99b6216b2979a825f07253c8947e (diff) | |
download | upstream-31545378641d45f5fac5ffc408a31b700b80121f.tar.gz upstream-31545378641d45f5fac5ffc408a31b700b80121f.tar.bz2 upstream-31545378641d45f5fac5ffc408a31b700b80121f.zip |
lantiq: flag FritzBox 7360 family buttons active-low
All buttons of the FritzBox 7360 family are active-low, not active-high.
Corrent the GPIO flag. This fixes release triggers upon push of a button.
Reported-by: Jan-Niklas Burfeind <git@aiyionpri.me>
Signed-off-by: David Bauer <mail@david-bauer.net>
Diffstat (limited to 'target/linux/lantiq/files')
-rw-r--r-- | target/linux/lantiq/files/arch/mips/boot/dts/lantiq/vr9_avm_fritz736x.dtsi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/lantiq/files/arch/mips/boot/dts/lantiq/vr9_avm_fritz736x.dtsi b/target/linux/lantiq/files/arch/mips/boot/dts/lantiq/vr9_avm_fritz736x.dtsi index 83ef415423..8406539f69 100644 --- a/target/linux/lantiq/files/arch/mips/boot/dts/lantiq/vr9_avm_fritz736x.dtsi +++ b/target/linux/lantiq/files/arch/mips/boot/dts/lantiq/vr9_avm_fritz736x.dtsi @@ -33,13 +33,13 @@ dect { label = "dect"; - gpios = <&gpio 1 GPIO_ACTIVE_HIGH>; + gpios = <&gpio 1 GPIO_ACTIVE_LOW>; linux,code = <KEY_PHONE>; }; wifi { label = "wifi"; - gpios = <&gpio 29 GPIO_ACTIVE_HIGH>; + gpios = <&gpio 29 GPIO_ACTIVE_LOW>; linux,code = <KEY_RFKILL>; }; }; |