diff options
author | Li Yang <leoyang.li@nxp.com> | 2021-10-12 18:58:16 -0500 |
---|---|---|
committer | Shawn Guo <shawnguo@kernel.org> | 2021-10-15 11:16:39 +0800 |
commit | 8611083250e801c8bdf8b9d7abe2e96767e9bd62 (patch) | |
tree | 2aa17dc855ba66483cc8abc0f9b6cc1e6480fdd4 /arch/arm/boot/dts/ls1021a-qds.dts | |
parent | 61761d3eeb4367c98d4f479033cc19064cd529e4 (diff) | |
download | linux-next-8611083250e801c8bdf8b9d7abe2e96767e9bd62.tar.gz |
ARM: dts: ls1021a: remove regulators simple-bus
There is no regulator bus in hardware. So move the regulator nodes out
and remove the regulators simple-bus. This also make the dts align with
the simple-bus schema.
Signed-off-by: Li Yang <leoyang.li@nxp.com>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
Diffstat (limited to 'arch/arm/boot/dts/ls1021a-qds.dts')
-rw-r--r-- | arch/arm/boot/dts/ls1021a-qds.dts | 19 |
1 files changed, 6 insertions, 13 deletions
diff --git a/arch/arm/boot/dts/ls1021a-qds.dts b/arch/arm/boot/dts/ls1021a-qds.dts index 6db6604e7a18..6e469b46229f 100644 --- a/arch/arm/boot/dts/ls1021a-qds.dts +++ b/arch/arm/boot/dts/ls1021a-qds.dts @@ -25,19 +25,12 @@ clock-frequency = <24576000>; }; - regulators { - compatible = "simple-bus"; - #address-cells = <1>; - #size-cells = <0>; - - reg_3p3v: regulator@0 { - compatible = "regulator-fixed"; - reg = <0>; - regulator-name = "3P3V"; - regulator-min-microvolt = <3300000>; - regulator-max-microvolt = <3300000>; - regulator-always-on; - }; + reg_3p3v: regulator { + compatible = "regulator-fixed"; + regulator-name = "3P3V"; + regulator-min-microvolt = <3300000>; + regulator-max-microvolt = <3300000>; + regulator-always-on; }; sound { |