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/DGN3500.dtsi | |
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/DGN3500.dtsi')
-rw-r--r-- | target/linux/lantiq/dts/DGN3500.dtsi | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/target/linux/lantiq/dts/DGN3500.dtsi b/target/linux/lantiq/dts/DGN3500.dtsi index f86ccc5d23..983d854504 100644 --- a/target/linux/lantiq/dts/DGN3500.dtsi +++ b/target/linux/lantiq/dts/DGN3500.dtsi @@ -1,4 +1,4 @@ -/include/ "ar9.dtsi" +#include "ar9.dtsi" / { chosen { @@ -75,7 +75,7 @@ lantiq,bus-clock = <33333333>; interrupt-map-mask = <0xf800 0x0 0x0 0x7>; interrupt-map = <0x7000 0 0 1 &icu0 30 1>; - gpio-reset = <&gpio 21 0>; + gpio-reset = <&gpio 21 GPIO_ACTIVE_HIGH>; req-mask = <0x1>; /* GNT1 */ }; }; @@ -90,8 +90,8 @@ rtl8366rb { compatible = "rtl8366rb"; - gpio-sda = <&gpio 35 0>; - gpio-sck = <&gpio 37 0>; + gpio-sda = <&gpio 35 GPIO_ACTIVE_HIGH>; + gpio-sck = <&gpio 37 GPIO_ACTIVE_HIGH>; }; gpio-keys-polled { @@ -102,18 +102,18 @@ rfkill { label = "rfkill"; - gpios = <&gpio 36 1>; - linux,code = <0xf7>; + gpios = <&gpio 36 GPIO_ACTIVE_LOW>; + linux,code = <KEY_RFKILL>; }; wps { label = "wps"; - gpios = <&gpio 54 1>; - linux,code = <0x211>; + gpios = <&gpio 54 GPIO_ACTIVE_LOW>; + linux,code = <KEY_WPS_BUTTON>; }; reset { label = "reset"; - gpios = <&gpio 53 1>; - linux,code = <0x198>; + gpios = <&gpio 53 GPIO_ACTIVE_LOW>; + linux,code = <KEY_RESTART>; }; }; @@ -121,38 +121,38 @@ compatible = "gpio-leds"; internet: internet { label = "dgn3500:green:internet"; - gpios = <&gpio 2 1>; + gpios = <&gpio 2 GPIO_ACTIVE_LOW>; }; /* internet red is missing */ dsl: dsl { label = "dgn3500:green:dsl"; - gpios = <&gpio 4 1>; + gpios = <&gpio 4 GPIO_ACTIVE_LOW>; }; usb: usb { label = "dgn3500:green:usb"; - gpios = <&gpio 22 1>; + gpios = <&gpio 22 GPIO_ACTIVE_LOW>; }; power_green: power { label = "dgn3500:green:power"; - gpios = <&gpio 34 1>; + gpios = <&gpio 34 GPIO_ACTIVE_LOW>; default-state = "keep"; }; power_red: power2 { label = "dgn3500:red:power"; - gpios = <&gpio 39 1>; + gpios = <&gpio 39 GPIO_ACTIVE_LOW>; }; /* power amber is missing */ wifi: wifi { label = "dgn3500:blue:wireless"; - gpios = <&gpio 51 1>; + gpios = <&gpio 51 GPIO_ACTIVE_LOW>; }; wps { label = "dgn3500:green:wps"; - gpios = <&gpio 52 1>; + gpios = <&gpio 52 GPIO_ACTIVE_LOW>; }; }; }; |