Commit f2ab2631 authored by Krzysztof Kozlowski's avatar Krzysztof Kozlowski

ARM: dts: exynos: Define fixed regulators in root node for consistency in SMDK5420

Remove the regulators node and define fixed regulators directly under
the root node.  This makes SMDK5420 board consistent with other Exynos
boards.

Name the fixed regulator nodes consistently.
Suggested-by: default avatarMarek Szyprowski <m.szyprowski@samsung.com>
Signed-off-by: default avatarKrzysztof Kozlowski <krzk@kernel.org>
parent 93be8759
...@@ -32,40 +32,31 @@ oscclk { ...@@ -32,40 +32,31 @@ oscclk {
}; };
}; };
regulators { vdd: regulator-0 {
compatible = "simple-bus";
#address-cells = <1>;
#size-cells = <0>;
vdd: fixed-regulator@0 {
compatible = "regulator-fixed"; compatible = "regulator-fixed";
reg = <0>;
regulator-name = "vdd-supply"; regulator-name = "vdd-supply";
regulator-min-microvolt = <1800000>; regulator-min-microvolt = <1800000>;
regulator-max-microvolt = <1800000>; regulator-max-microvolt = <1800000>;
regulator-always-on; regulator-always-on;
}; };
dbvdd: fixed-regulator@1 { dbvdd: regulator-1 {
compatible = "regulator-fixed"; compatible = "regulator-fixed";
reg = <1>;
regulator-name = "dbvdd-supply"; regulator-name = "dbvdd-supply";
regulator-min-microvolt = <3300000>; regulator-min-microvolt = <3300000>;
regulator-max-microvolt = <3300000>; regulator-max-microvolt = <3300000>;
regulator-always-on; regulator-always-on;
}; };
spkvdd: fixed-regulator@2 { spkvdd: regulator-2 {
compatible = "regulator-fixed"; compatible = "regulator-fixed";
reg = <2>;
regulator-name = "spkvdd-supply"; regulator-name = "spkvdd-supply";
regulator-min-microvolt = <5000000>; regulator-min-microvolt = <5000000>;
regulator-max-microvolt = <5000000>; regulator-max-microvolt = <5000000>;
regulator-always-on; regulator-always-on;
}; };
};
usb300_vbus_reg: regulator-usb300 { usb300_vbus_reg: regulator-3 {
compatible = "regulator-fixed"; compatible = "regulator-fixed";
regulator-name = "VBUS0"; regulator-name = "VBUS0";
regulator-min-microvolt = <5000000>; regulator-min-microvolt = <5000000>;
...@@ -76,7 +67,7 @@ usb300_vbus_reg: regulator-usb300 { ...@@ -76,7 +67,7 @@ usb300_vbus_reg: regulator-usb300 {
enable-active-high; enable-active-high;
}; };
usb301_vbus_reg: regulator-usb301 { usb301_vbus_reg: regulator-4 {
compatible = "regulator-fixed"; compatible = "regulator-fixed";
regulator-name = "VBUS1"; regulator-name = "VBUS1";
regulator-min-microvolt = <5000000>; regulator-min-microvolt = <5000000>;
......
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