Skip to content

Commit

Permalink
lantiq: flag FritzBox 7360 family buttons active-low
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
blocktrron committed Jan 14, 2022
1 parent 2a31e9c commit 3154537
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -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>;
};
};
Expand Down

0 comments on commit 3154537

Please sign in to comment.