diff options
author | Krzysztof Kozlowski <[email protected]> | 2023-09-24 20:39:13 +0200 |
---|---|---|
committer | Bjorn Andersson <[email protected]> | 2023-09-27 16:10:23 -0700 |
commit | 09f8ee81b6da5f76de8b83c8bfc4475b54e101e0 (patch) | |
tree | 9a5d193d074f9e1cec228f3c59d5faf5b801ec10 | |
parent | 34c006f42cb15ac574c61859d07ae7a41ec04d84 (diff) |
ARM: dts: qcom: mdm9615: populate vsdcc fixed regulator
Fixed regulator put under "regulators" node will not be populated,
unless simple-bus or something similar is used. Drop the "regulators"
wrapper node to fix this.
Fixes: 2c5e596524e7 ("ARM: dts: Add MDM9615 dtsi")
Signed-off-by: Krzysztof Kozlowski <[email protected]>
Reviewed-by: Dmitry Baryshkov <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Bjorn Andersson <[email protected]>
-rw-r--r-- | arch/arm/boot/dts/qcom/qcom-mdm9615.dtsi | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/arch/arm/boot/dts/qcom/qcom-mdm9615.dtsi b/arch/arm/boot/dts/qcom/qcom-mdm9615.dtsi index fc4f52f9e9f7..63e21aa23642 100644 --- a/arch/arm/boot/dts/qcom/qcom-mdm9615.dtsi +++ b/arch/arm/boot/dts/qcom/qcom-mdm9615.dtsi @@ -47,14 +47,12 @@ }; }; - regulators { - vsdcc_fixed: vsdcc-regulator { - compatible = "regulator-fixed"; - regulator-name = "SDCC Power"; - regulator-min-microvolt = <2700000>; - regulator-max-microvolt = <2700000>; - regulator-always-on; - }; + vsdcc_fixed: vsdcc-regulator { + compatible = "regulator-fixed"; + regulator-name = "SDCC Power"; + regulator-min-microvolt = <2700000>; + regulator-max-microvolt = <2700000>; + regulator-always-on; }; soc: soc { |