diff options
author | L. D. Pinney <ldpinney@gmail.com> | 2017-07-29 10:14:07 +0800 |
---|---|---|
committer | Mathias Kresin <dev@kresin.me> | 2017-08-03 19:37:40 +0200 |
commit | 70b192f57358f753842cbe1f8f82e26e8c6f9e1e (patch) | |
tree | cba041befbc7be0c927f73327f9a5fcf0a910725 /target/linux/ramips/dts/RP-N53.dts | |
parent | b70a96285c0f489be68bfea7a84a7950a58ddc79 (diff) | |
download | upstream-70b192f57358f753842cbe1f8f82e26e8c6f9e1e.tar.gz upstream-70b192f57358f753842cbe1f8f82e26e8c6f9e1e.tar.bz2 upstream-70b192f57358f753842cbe1f8f82e26e8c6f9e1e.zip |
ramips: update device tree source files
Use the GPIO dt-bindings macros and add compatible strings in the
ramips device tree source files.
Signed-off-by: L. D. Pinney <ldpinney@gmail.com>
Signed-off-by: Mathias Kresin <dev@kresin.me>
Diffstat (limited to 'target/linux/ramips/dts/RP-N53.dts')
-rw-r--r-- | target/linux/ramips/dts/RP-N53.dts | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/target/linux/ramips/dts/RP-N53.dts b/target/linux/ramips/dts/RP-N53.dts index 466a072bae..b921d9ca5d 100644 --- a/target/linux/ramips/dts/RP-N53.dts +++ b/target/linux/ramips/dts/RP-N53.dts @@ -2,6 +2,7 @@ #include "mt7620a.dtsi" +#include <dt-bindings/gpio/gpio.h> #include <dt-bindings/input/input.h> / { @@ -16,25 +17,25 @@ touch { label = "touch"; - gpios = <&gpio1 0 1>; + gpios = <&gpio1 0 GPIO_ACTIVE_LOW>; linux,code = <BTN_0>; }; wps { label = "wps"; - gpios = <&gpio1 1 1>; + gpios = <&gpio1 1 GPIO_ACTIVE_LOW>; linux,code = <BTN_0>; }; reset { label = "reset"; - gpios = <&gpio1 2 1>; + gpios = <&gpio1 2 GPIO_ACTIVE_LOW>; linux,code = <BTN_0>; }; audio { label = "audio"; - gpios = <&gpio1 3 0>; + gpios = <&gpio1 3 GPIO_ACTIVE_HIGH>; linux,code = <BTN_1>; }; }; @@ -44,42 +45,42 @@ backlight { label = "rp-n53:white:back"; - gpios = <&gpio1 4 1>; + gpios = <&gpio1 4 GPIO_ACTIVE_LOW>; }; wifi0 { label = "rp-n53:blue:5g3"; - gpios = <&gpio1 5 1>; + gpios = <&gpio1 5 GPIO_ACTIVE_LOW>; }; wifi1 { label = "rp-n53:blue:5g2"; - gpios = <&gpio1 6 1>; + gpios = <&gpio1 6 GPIO_ACTIVE_LOW>; }; wifi2 { label = "rp-n53:blue:5g1"; - gpios = <&gpio1 7 1>; + gpios = <&gpio1 7 GPIO_ACTIVE_LOW>; }; wifi3 { label = "rp-n53:blue:wifi"; - gpios = <&gpio1 8 1>; + gpios = <&gpio1 8 GPIO_ACTIVE_LOW>; }; wifi4 { label = "rp-n53:blue:2g1"; - gpios = <&gpio1 9 1>; + gpios = <&gpio1 9 GPIO_ACTIVE_LOW>; }; wifi5 { label = "rp-n53:blue:2g2"; - gpios = <&gpio1 10 1>; + gpios = <&gpio1 10 GPIO_ACTIVE_LOW>; }; wifi6 { label = "rp-n53:blue:2g3"; - gpios = <&gpio1 11 1>; + gpios = <&gpio1 11 GPIO_ACTIVE_LOW>; }; }; }; |