Commit ea1ccdc6 authored by Paul Cercueil's avatar Paul Cercueil Committed by Thomas Bogendoerfer

MIPS: DTS: CI20: Fix regulators

The regulators don't have any "reg" property, and therefore shouldn't
use an unit address in their node names. They also don't need to specify
the GPIO_ACTIVE_LOW flag, which will be ignored anyway, as they are
active-high.
Signed-off-by: default avatarPaul Cercueil <paul@crapouillou.net>
Signed-off-by: default avatarThomas Bogendoerfer <tsbogend@alpha.franken.de>
parent 4cdb5d9d
...@@ -67,14 +67,14 @@ led-3 { ...@@ -67,14 +67,14 @@ led-3 {
}; };
}; };
eth0_power: fixedregulator@0 { eth0_power: fixedregulator-0 {
compatible = "regulator-fixed"; compatible = "regulator-fixed";
regulator-name = "eth0_power"; regulator-name = "eth0_power";
regulator-min-microvolt = <3300000>; regulator-min-microvolt = <3300000>;
regulator-max-microvolt = <3300000>; regulator-max-microvolt = <3300000>;
gpio = <&gpb 25 GPIO_ACTIVE_LOW>; gpio = <&gpb 25 0>;
enable-active-high; enable-active-high;
}; };
...@@ -97,23 +97,23 @@ ir: ir { ...@@ -97,23 +97,23 @@ ir: ir {
gpios = <&gpe 3 GPIO_ACTIVE_LOW>; gpios = <&gpe 3 GPIO_ACTIVE_LOW>;
}; };
wlan0_power: fixedregulator@1 { wlan0_power: fixedregulator-1 {
compatible = "regulator-fixed"; compatible = "regulator-fixed";
regulator-name = "wlan0_power"; regulator-name = "wlan0_power";
gpio = <&gpb 19 GPIO_ACTIVE_LOW>; gpio = <&gpb 19 0>;
enable-active-high; enable-active-high;
}; };
otg_power: fixedregulator@2 { otg_power: fixedregulator-2 {
compatible = "regulator-fixed"; compatible = "regulator-fixed";
regulator-name = "otg_power"; regulator-name = "otg_power";
regulator-min-microvolt = <5000000>; regulator-min-microvolt = <5000000>;
regulator-max-microvolt = <5000000>; regulator-max-microvolt = <5000000>;
gpio = <&gpf 15 GPIO_ACTIVE_LOW>; gpio = <&gpf 15 0>;
enable-active-high; enable-active-high;
}; };
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment