diff options
author | Thierry Reding <treding@nvidia.com> | 2022-11-18 07:35:31 +0100 |
---|---|---|
committer | Thierry Reding <treding@nvidia.com> | 2023-01-17 13:55:03 +0100 |
commit | 29bcc1eaca315326d1cc883fbe9b451d1f9e3fa5 (patch) | |
tree | 72fa852876fa1ab6580e54006be8504deba46ea5 | |
parent | 979ac5ef58d12aa71a364ddcc69b21cef3166439 (diff) | |
download | lwn-29bcc1eaca315326d1cc883fbe9b451d1f9e3fa5.tar.gz lwn-29bcc1eaca315326d1cc883fbe9b451d1f9e3fa5.zip |
arm64: tegra: Fix duplicate regulator on Jetson TX1
When the top-level regulators were renamed, the 1.2V camera regulator
accidentally ended up with the same DT node name as the 1.8V camera
regulator.
Fixes: 097e01c61015 ("arm64: tegra: Rename top-level regulators")
Signed-off-by: Thierry Reding <treding@nvidia.com>
-rw-r--r-- | arch/arm64/boot/dts/nvidia/tegra210-p2597.dtsi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm64/boot/dts/nvidia/tegra210-p2597.dtsi b/arch/arm64/boot/dts/nvidia/tegra210-p2597.dtsi index dd9a17922fe5..a87e103f3828 100644 --- a/arch/arm64/boot/dts/nvidia/tegra210-p2597.dtsi +++ b/arch/arm64/boot/dts/nvidia/tegra210-p2597.dtsi @@ -1667,7 +1667,7 @@ vin-supply = <&vdd_5v0_sys>; }; - vdd_cam_1v2: regulator-vdd-cam-1v8 { + vdd_cam_1v2: regulator-vdd-cam-1v2 { compatible = "regulator-fixed"; regulator-name = "vdd-cam-1v2"; regulator-min-microvolt = <1200000>; |