diff options
author | Andreas Eberlein <foodeas@aeberlein.de> | 2016-09-29 18:22:55 +0200 |
---|---|---|
committer | Mathias Kresin <dev@kresin.me> | 2016-10-19 19:55:04 +0200 |
commit | eba84bee4ce518dc509fe51f252c5307dccf3a1c (patch) | |
tree | e2f79978f223531baed356be87f12d3d407f342b /target/linux/lantiq/dts/H201L.dts | |
parent | 72d12672de933274f6a0c54277e5621b0ea275e1 (diff) | |
download | upstream-eba84bee4ce518dc509fe51f252c5307dccf3a1c.tar.gz upstream-eba84bee4ce518dc509fe51f252c5307dccf3a1c.tar.bz2 upstream-eba84bee4ce518dc509fe51f252c5307dccf3a1c.zip |
lantiq: Sanitize device tree files
The device tree file of ARV752DPW uses numbers/hex values for gpio states and input event codes.
This cleans it up and uses the available macros from header files. This way the functions are easier to read and comprehend.
Signed-off-by: Andreas Eberlein <foodeas@aeberlein.de>
[sanitize all device tree files]
Signed-off-by: Mathias Kresin <dev@kresin.me>
Diffstat (limited to 'target/linux/lantiq/dts/H201L.dts')
-rw-r--r-- | target/linux/lantiq/dts/H201L.dts | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/target/linux/lantiq/dts/H201L.dts b/target/linux/lantiq/dts/H201L.dts index c4208e3c1f..85723592b5 100644 --- a/target/linux/lantiq/dts/H201L.dts +++ b/target/linux/lantiq/dts/H201L.dts @@ -1,6 +1,6 @@ /dts-v1/; -/include/ "ar9.dtsi" +#include "ar9.dtsi" / { model = "H201L - ZTE H210L"; @@ -72,7 +72,7 @@ ifxhcd@E101000 { status = "okay"; - gpios = <&gpio 36 0>; + gpios = <&gpio 36 GPIO_ACTIVE_HIGH>; }; }; @@ -84,18 +84,18 @@ reset { label = "reset"; - gpios = <&gpio 53 1>; - linux,code = <0x198>; + gpios = <&gpio 53 GPIO_ACTIVE_LOW>; + linux,code = <KEY_RESTART>; }; wps { label = "wps"; - gpios = <&gpio 54 1>; - linux,code = <0x211>; + gpios = <&gpio 54 GPIO_ACTIVE_LOW>; + linux,code = <KEY_WPS_BUTTON>; }; rfkill { label = "rfkill"; - gpios = <&gpio 55 1>; - linux,code = <0xf7>; + gpios = <&gpio 55 GPIO_ACTIVE_LOW>; + linux,code = <KEY_RFKILL>; }; }; @@ -104,32 +104,32 @@ power_green: power { label = "h201l:green:power"; - gpios = <&gpio 19 1>; + gpios = <&gpio 19 GPIO_ACTIVE_LOW>; default-state = "keep"; }; online: online { label = "h201l:green:internet"; - gpios = <&gpio 37 1>; + gpios = <&gpio 37 GPIO_ACTIVE_LOW>; }; dsl: dsl { label = "h201l:green:dsl"; - gpios = <&gpio 4 1>; + gpios = <&gpio 4 GPIO_ACTIVE_LOW>; }; phone { label = "h201l:green:phone"; - gpios = <&gpio 39 1>; + gpios = <&gpio 39 GPIO_ACTIVE_LOW>; }; wps { label = "h201l:green:wps"; - gpios = <&gpio 22 1>; + gpios = <&gpio 22 GPIO_ACTIVE_LOW>; }; wifi: wifi { label = "h201l:green:wlan"; - gpios = <&gpio 6 1>; + gpios = <&gpio 6 GPIO_ACTIVE_LOW>; }; usb: usb { label = "h201l:green:usb"; - gpios = <&gpio 14 1>; + gpios = <&gpio 14 GPIO_ACTIVE_LOW>; }; }; @@ -140,17 +140,17 @@ switch { gpio-export,name = "switch"; gpio-export,output = <1>; - gpios = <&gpio 38 0>; + gpios = <&gpio 38 GPIO_ACTIVE_HIGH>; }; usb { gpio-export,name = "usb"; gpio-export,output = <1>; - gpios = <&gpio 28 0>; + gpios = <&gpio 28 GPIO_ACTIVE_HIGH>; }; wifi { gpio-export,name = "wifi"; gpio-export,output = <1>; - gpios = <&gpio 7 0>; + gpios = <&gpio 7 GPIO_ACTIVE_HIGH>; }; }; }; |