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_d-team_pbr-d1.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_d-team_pbr-d1.dts')
-rw-r--r-- | target/linux/ramips/dts/mt7628an_d-team_pbr-d1.dts | 42 |
1 files changed, 20 insertions, 22 deletions
diff --git a/target/linux/ramips/dts/mt7628an_d-team_pbr-d1.dts b/target/linux/ramips/dts/mt7628an_d-team_pbr-d1.dts index cef92c5bf8..bcc9d00519 100644 --- a/target/linux/ramips/dts/mt7628an_d-team_pbr-d1.dts +++ b/target/linux/ramips/dts/mt7628an_d-team_pbr-d1.dts @@ -60,32 +60,30 @@ }; }; -&pinctrl { - state_default: pinctrl0 { - gpio { - ralink,group = "gpio"; - ralink,function = "gpio"; - }; +&state_default { + gpio { + ralink,group = "gpio"; + ralink,function = "gpio"; + }; - i2c { - ralink,group = "i2c"; - ralink,function = "gpio"; - }; + i2c { + ralink,group = "i2c"; + ralink,function = "gpio"; + }; - i2s { - ralink,group = "i2s"; - ralink,function = "gpio"; - }; + i2s { + ralink,group = "i2s"; + ralink,function = "gpio"; + }; - spis { - ralink,group = "spis"; - ralink,function = "gpio"; - }; + spis { + ralink,group = "spis"; + ralink,function = "gpio"; + }; - wdt { - ralink,group = "wdt"; - ralink,function = "gpio"; - }; + wdt { + ralink,group = "wdt"; + ralink,function = "gpio"; }; }; |