diff options
author | David Bauer <mail@david-bauer.net> | 2019-08-10 00:45:49 +0200 |
---|---|---|
committer | David Bauer <mail@david-bauer.net> | 2019-08-11 12:54:57 +0200 |
commit | 5355665cc8dff19510aa129723e5e935f16b03ad (patch) | |
tree | 58f4ad46a35706322f5dd25ac91c26af8b535574 | |
parent | af2ceb93d7db070d71f2ce58b869e77d4730bb97 (diff) | |
download | upstream-5355665cc8dff19510aa129723e5e935f16b03ad.tar.gz upstream-5355665cc8dff19510aa129723e5e935f16b03ad.tar.bz2 upstream-5355665cc8dff19510aa129723e5e935f16b03ad.zip |
lantiq: correct Fritz!Box 7412 button logic level
The AVM FRITZ!Box 7412 buttons are both active low, which is currently
incorrectly defined in the device-tree.
This leads to the device booting directly into failsafe.
Signed-off-by: David Bauer <mail@david-bauer.net>
(cherry picked from commit c12947b39e96c82974cbe0fc3557259713f37770)
-rw-r--r-- | target/linux/lantiq/files-4.14/arch/mips/boot/dts/FRITZ7412.dts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/lantiq/files-4.14/arch/mips/boot/dts/FRITZ7412.dts b/target/linux/lantiq/files-4.14/arch/mips/boot/dts/FRITZ7412.dts index 3059c12858..14a4bf77b9 100644 --- a/target/linux/lantiq/files-4.14/arch/mips/boot/dts/FRITZ7412.dts +++ b/target/linux/lantiq/files-4.14/arch/mips/boot/dts/FRITZ7412.dts @@ -33,13 +33,13 @@ wps { label = "wps"; - gpios = <&gpio 1 GPIO_ACTIVE_HIGH>; + gpios = <&gpio 1 GPIO_ACTIVE_LOW>; linux,code = <KEY_WPS_BUTTON>; }; dect { label = "dect"; - gpios = <&gpio 2 GPIO_ACTIVE_HIGH>; + gpios = <&gpio 2 GPIO_ACTIVE_LOW>; linux,code = <KEY_PHONE>; }; }; |