diff options
author | Andreas Eberlein <foodeas@aeberlein.de> | 2016-09-29 18:22:23 +0200 |
---|---|---|
committer | Mathias Kresin <dev@kresin.me> | 2016-10-19 19:06:15 +0200 |
commit | 72d12672de933274f6a0c54277e5621b0ea275e1 (patch) | |
tree | ab2b5a33a5d71992644600e829f083e1d4594b77 /target | |
parent | fa14124616ca3ac2cf1c4ce2928b41d38e888b87 (diff) | |
download | upstream-72d12672de933274f6a0c54277e5621b0ea275e1.tar.gz upstream-72d12672de933274f6a0c54277e5621b0ea275e1.tar.bz2 upstream-72d12672de933274f6a0c54277e5621b0ea275e1.zip |
lantiq: Fix buttons for ARV752DPW
The GPIO for reset switch is wrong in definition. Further the key codes for the two additional buttons are ineffective.
Both is fixed here.
Signed-off-by: Andreas Eberlein <foodeas@aeberlein.de>
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/lantiq/dts/ARV752DPW.dts | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/target/linux/lantiq/dts/ARV752DPW.dts b/target/linux/lantiq/dts/ARV752DPW.dts index 743d3ece4a..a350daf257 100644 --- a/target/linux/lantiq/dts/ARV752DPW.dts +++ b/target/linux/lantiq/dts/ARV752DPW.dts @@ -157,24 +157,24 @@ #size-cells = <0>; poll-interval = <100>; - /* wps { + wps { label = "wps"; gpios = <&gpio 11 1>; linux,code = <0x211>; - }; */ + }; restart { label = "restart"; gpios = <&gpio 12 1>; - linux,code = <0x110>; + linux,code = <0x100>; }; dsl { label = "dsl"; gpios = <&gpio 13 1>; - linux,code = <0x111>; + linux,code = <0x101>; }; reset { label = "reset"; - gpios = <&gpio 28 1>; + gpios = <&gpio 30 1>; linux,code = <0x198>; }; }; |