diff options
author | Mathias Kresin <dev@kresin.me> | 2016-11-11 22:43:08 +0100 |
---|---|---|
committer | Mathias Kresin <dev@kresin.me> | 2016-11-13 07:07:58 +0100 |
commit | 2b55c83e68068887db9e49de8e81b1b4a267a4f2 (patch) | |
tree | 08f3f29dffd47849f62376820207584c43f5aa33 /target/linux/ramips/dts/WHR-300HP2.dts | |
parent | 77b807999d86498c4378a136bd366d09eb2c9bd5 (diff) | |
download | upstream-2b55c83e68068887db9e49de8e81b1b4a267a4f2.tar.gz upstream-2b55c83e68068887db9e49de8e81b1b4a267a4f2.tar.bz2 upstream-2b55c83e68068887db9e49de8e81b1b4a267a4f2.zip |
treewide: dts: use keycode defines from input dt-binding
All compiled device tree files not mentioned are binary identical to the
former ones.
Fix the obvious decimal/hex confusion for the power key of ramips/M2M.dts.
Due to the include of the input binding header, the BTN_* node names in:
- ramips/GL-MT300A.dts
- ramips/GL-MT300N.dts
- ramips/GL-MT750.dts
- ramips/Timecloud.dts
will be changed by the compiler to the numerical equivalent.
Move the binding include of lantiq boards to the file where they are
used the first time to hint the user where the values do come from.
Signed-off-by: Mathias Kresin <dev@kresin.me>
Diffstat (limited to 'target/linux/ramips/dts/WHR-300HP2.dts')
-rw-r--r-- | target/linux/ramips/dts/WHR-300HP2.dts | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/target/linux/ramips/dts/WHR-300HP2.dts b/target/linux/ramips/dts/WHR-300HP2.dts index acd4ce47e5..3958217082 100644 --- a/target/linux/ramips/dts/WHR-300HP2.dts +++ b/target/linux/ramips/dts/WHR-300HP2.dts @@ -2,6 +2,8 @@ #include "mt7620a.dtsi" +#include <dt-bindings/input/input.h> + / { compatible = "ralink,mt7620a-soc"; model = "Buffalo WHR-300HP2"; @@ -54,27 +56,27 @@ reset { label = "reset"; gpios = <&gpio2 12 1>; - linux,code = <0x198>; + linux,code = <KEY_RESTART>; }; aoss { label = "aoss"; gpios = <&gpio2 13 1>; - linux,code = <0x211>; + linux,code = <KEY_WPS_BUTTON>; }; ap { label = "ap"; gpios = <&gpio2 14 1>; - linux,code = <0x100>; - linux,input-type = <5>; /* EV_SW */ + linux,code = <BTN_0>; + linux,input-type = <EV_SW>; }; bridge { label = "bridge"; gpios = <&gpio2 15 1>; - linux,code = <0x100>; - linux,input-type = <5>; /* EV_SW */ + linux,code = <BTN_0>; + linux,input-type = <EV_SW>; }; }; }; |