diff options
author | Adrian Schmutzler <freifunk@adrianschmutzler.de> | 2019-12-22 21:26:01 +0100 |
---|---|---|
committer | Adrian Schmutzler <freifunk@adrianschmutzler.de> | 2019-12-23 02:24:55 +0100 |
commit | e4ce3109f28712dad3b3db27938a7b853346d9b6 (patch) | |
tree | 5bb59404fbefa9802792d03546508d48b5fcb5c7 /target/linux/ramips/dts/mt7628an_wiznet_wizfi630s.dts | |
parent | a22b7a60d98836343c4f7b9ec0fcae68d9131522 (diff) | |
download | upstream-e4ce3109f28712dad3b3db27938a7b853346d9b6.tar.gz upstream-e4ce3109f28712dad3b3db27938a7b853346d9b6.tar.bz2 upstream-e4ce3109f28712dad3b3db27938a7b853346d9b6.zip |
ramips: simplify state_default/pinctrl0 in device DTS files
The node pinctrl0 is already set up in the SOC DTSI files, but
defined again as member of pinctrl in most of the device DTS(I)
files. This patch removes this redundancy for the entire ramips
target.
Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
Diffstat (limited to 'target/linux/ramips/dts/mt7628an_wiznet_wizfi630s.dts')
-rw-r--r-- | target/linux/ramips/dts/mt7628an_wiznet_wizfi630s.dts | 42 |
1 files changed, 20 insertions, 22 deletions
diff --git a/target/linux/ramips/dts/mt7628an_wiznet_wizfi630s.dts b/target/linux/ramips/dts/mt7628an_wiznet_wizfi630s.dts index b5da84c9f8..c3a37fad47 100644 --- a/target/linux/ramips/dts/mt7628an_wiznet_wizfi630s.dts +++ b/target/linux/ramips/dts/mt7628an_wiznet_wizfi630s.dts @@ -79,32 +79,30 @@ }; }; -&pinctrl { - state_default: pinctrl0 { - gpio { - ralink,group = "gpio"; - ralink,function = "gpio"; - }; +&state_default { + gpio { + ralink,group = "gpio"; + ralink,function = "gpio"; + }; - i2s { - ralink,group = "i2s"; - ralink,function = "gpio"; - }; + i2s { + ralink,group = "i2s"; + ralink,function = "gpio"; + }; - wdt { - ralink,group = "wdt"; - ralink,function = "gpio"; - }; + wdt { + ralink,group = "wdt"; + ralink,function = "gpio"; + }; - i2c { - ralink,group = "i2c"; - ralink,function = "gpio"; - }; + i2c { + ralink,group = "i2c"; + ralink,function = "gpio"; + }; - refclk { - ralink,group = "refclk"; - ralink,function = "gpio"; - }; + refclk { + ralink,group = "refclk"; + ralink,function = "gpio"; }; }; |