diff options
author | Ludovic Desroches <ludovic.desroches@microchip.com> | 2021-04-02 15:02:27 +0200 |
---|---|---|
committer | Nicolas Ferre <nicolas.ferre@microchip.com> | 2021-04-07 13:32:22 +0200 |
commit | ca7a049ad1a72ec5f03d1330b53575237fcb727c (patch) | |
tree | c4addec25f3b502760befa440724d421bf0cd519 /arch/arm/boot/dts/at91-sama5d27_wlsom1_ek.dts | |
parent | 174c80b254a0fdc03d86c14fb70859fb26b7060f (diff) | |
download | linux-stable-ca7a049ad1a72ec5f03d1330b53575237fcb727c.tar.gz |
ARM: dts: at91: change the key code of the gpio key
Having a button code and not a key code causes issues with libinput.
udev won't set ID_INPUT_KEY. If it is forced, then it causes a bug
within libinput.
Signed-off-by: Ludovic Desroches <ludovic.desroches@microchip.com>
Signed-off-by: Nicolas Ferre <nicolas.ferre@microchip.com>
Link: https://lore.kernel.org/r/20210402130227.21478-1-nicolas.ferre@microchip.com
Diffstat (limited to 'arch/arm/boot/dts/at91-sama5d27_wlsom1_ek.dts')
-rw-r--r-- | arch/arm/boot/dts/at91-sama5d27_wlsom1_ek.dts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/at91-sama5d27_wlsom1_ek.dts b/arch/arm/boot/dts/at91-sama5d27_wlsom1_ek.dts index 180a08765cb8..ff83967fd008 100644 --- a/arch/arm/boot/dts/at91-sama5d27_wlsom1_ek.dts +++ b/arch/arm/boot/dts/at91-sama5d27_wlsom1_ek.dts @@ -8,6 +8,7 @@ */ /dts-v1/; #include "at91-sama5d27_wlsom1.dtsi" +#include <dt-bindings/input/input.h> / { model = "Microchip SAMA5D27 WLSOM1 EK"; @@ -35,7 +36,7 @@ sw4 { label = "USER BUTTON"; gpios = <&pioA PIN_PB2 GPIO_ACTIVE_LOW>; - linux,code = <0x104>; + linux,code = <KEY_PROG1>; wakeup-source; }; }; |