diff options
author | Krzysztof Kozlowski <krzk@kernel.org> | 2020-07-03 20:44:49 +0200 |
---|---|---|
committer | Krzysztof Kozlowski <krzk@kernel.org> | 2020-07-07 08:50:36 +0200 |
commit | 2999f0a9ef71d4d5d88b8a3fa298d14cfc4bad26 (patch) | |
tree | 43d12d88f38aeb77ba480882a053b1173c3f7ca2 | |
parent | f91423e9de61de7a7d8b4b712cfe94cbc0effb1b (diff) | |
download | linux-2999f0a9ef71d4d5d88b8a3fa298d14cfc4bad26.tar.gz linux-2999f0a9ef71d4d5d88b8a3fa298d14cfc4bad26.tar.bz2 linux-2999f0a9ef71d4d5d88b8a3fa298d14cfc4bad26.zip |
ARM: dts: exynos: Define fixed regulators in root node for consistency in Origen
Remove the regulators node and define fixed regulators directly under
the root node. This makes Exynos4412 Origen board consistent with other
Exynos boards.
Suggested-by: Marek Szyprowski <m.szyprowski@samsung.com>
Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
-rw-r--r-- | arch/arm/boot/dts/exynos4412-origen.dts | 21 |
1 files changed, 7 insertions, 14 deletions
diff --git a/arch/arm/boot/dts/exynos4412-origen.dts b/arch/arm/boot/dts/exynos4412-origen.dts index dc865be40751..8b11ad391252 100644 --- a/arch/arm/boot/dts/exynos4412-origen.dts +++ b/arch/arm/boot/dts/exynos4412-origen.dts @@ -33,20 +33,13 @@ reg = <0x0203F000 0x1000>; }; - regulators { - compatible = "simple-bus"; - #address-cells = <1>; - #size-cells = <0>; - - mmc_reg: regulator@0 { - compatible = "regulator-fixed"; - reg = <0>; - regulator-name = "VMEM_VDD_2.8V"; - regulator-min-microvolt = <2800000>; - regulator-max-microvolt = <2800000>; - gpio = <&gpx1 1 GPIO_ACTIVE_HIGH>; - enable-active-high; - }; + mmc_reg: regulator-0 { + compatible = "regulator-fixed"; + regulator-name = "VMEM_VDD_2.8V"; + regulator-min-microvolt = <2800000>; + regulator-max-microvolt = <2800000>; + gpio = <&gpx1 1 GPIO_ACTIVE_HIGH>; + enable-active-high; }; display-timings { |