diff options
author | Dmitry Baryshkov <dmitry.baryshkov@linaro.org> | 2022-09-30 20:52:16 +0200 |
---|---|---|
committer | Bjorn Andersson <andersson@kernel.org> | 2022-10-17 20:19:59 +0200 |
commit | 632546ad232761b65ffc8cca5499c6e8b6d67222 (patch) | |
tree | aa1d69a1de3715ab9472449be43556fc04529ec0 | |
parent | ARM: dts: qcom: apq8064-ifc6410: use labels to patch device tree (diff) | |
download | linux-632546ad232761b65ffc8cca5499c6e8b6d67222.tar.xz linux-632546ad232761b65ffc8cca5499c6e8b6d67222.zip |
ARM: dts: qcom: apq8064-ifc6410: pull ext-3p3v regulator from soc node
The ext 3.3V regulator is not part of the SoC, so pull it from the SoC
node.
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>
Signed-off-by: Bjorn Andersson <andersson@kernel.org>
Link: https://lore.kernel.org/r/20220930185236.867655-4-dmitry.baryshkov@linaro.org
-rw-r--r-- | arch/arm/boot/dts/qcom-apq8064-ifc6410.dts | 22 |
1 files changed, 10 insertions, 12 deletions
diff --git a/arch/arm/boot/dts/qcom-apq8064-ifc6410.dts b/arch/arm/boot/dts/qcom-apq8064-ifc6410.dts index 50792f06855e..f718b37192e9 100644 --- a/arch/arm/boot/dts/qcom-apq8064-ifc6410.dts +++ b/arch/arm/boot/dts/qcom-apq8064-ifc6410.dts @@ -57,18 +57,16 @@ }; }; - soc { - ext_3p3v: regulator-fixed@1 { - compatible = "regulator-fixed"; - regulator-min-microvolt = <3300000>; - regulator-max-microvolt = <3300000>; - regulator-name = "ext_3p3v"; - regulator-type = "voltage"; - startup-delay-us = <0>; - gpio = <&tlmm_pinmux 77 GPIO_ACTIVE_HIGH>; - enable-active-high; - regulator-boot-on; - }; + ext_3p3v: regulator-ext-3p3v { + compatible = "regulator-fixed"; + regulator-min-microvolt = <3300000>; + regulator-max-microvolt = <3300000>; + regulator-name = "ext_3p3v"; + regulator-type = "voltage"; + startup-delay-us = <0>; + gpio = <&tlmm_pinmux 77 GPIO_ACTIVE_HIGH>; + enable-active-high; + regulator-boot-on; }; }; |