diff options
author | David Heidelberg <[email protected]> | 2022-01-08 21:25:58 +0100 |
---|---|---|
committer | Bjorn Andersson <[email protected]> | 2022-01-31 18:15:43 -0600 |
commit | 96b2f11780d550e68dc1a5276861eb6eb3378b0c (patch) | |
tree | 0c43358232d5fbd5af04e3ac7b4b0e204e8e5400 | |
parent | 9f4a052795cd8b4adbe3c5eb0fb92b6122dbdc95 (diff) |
ARM: dts: qcom: msm8960: move vsdcc regulator out of simple-bus
It is not recommended to place regulator nodes inside simple-bus,
so move it out in order to fix the warnings generated by
dtschema/schemas/simple-bus.yaml schema.
Signed-off-by: David Heidelberg <[email protected]>
Signed-off-by: Bjorn Andersson <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
-rw-r--r-- | arch/arm/boot/dts/qcom-msm8960.dtsi | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/arch/arm/boot/dts/qcom-msm8960.dtsi b/arch/arm/boot/dts/qcom-msm8960.dtsi index 4eba16c74b8a..6ef5eedbe773 100644 --- a/arch/arm/boot/dts/qcom-msm8960.dtsi +++ b/arch/arm/boot/dts/qcom-msm8960.dtsi @@ -78,6 +78,15 @@ }; }; + /* Temporary fixed regulator */ + vsdcc_fixed: vsdcc-regulator { + compatible = "regulator-fixed"; + regulator-name = "SDCC Power"; + regulator-min-microvolt = <2700000>; + regulator-max-microvolt = <2700000>; + regulator-always-on; + }; + soc: soc { #address-cells = <1>; #size-cells = <1>; @@ -251,15 +260,6 @@ clock-names = "core"; }; - /* Temporary fixed regulator */ - vsdcc_fixed: vsdcc-regulator { - compatible = "regulator-fixed"; - regulator-name = "SDCC Power"; - regulator-min-microvolt = <2700000>; - regulator-max-microvolt = <2700000>; - regulator-always-on; - }; - amba { compatible = "simple-bus"; #address-cells = <1>; |