diff options
author | Thierry Reding | 2022-11-18 07:35:31 +0100 |
---|---|---|
committer | Greg Kroah-Hartman | 2023-03-10 09:32:36 +0100 |
commit | 3de06621abee7acf3e782c8f86e7f7132704d563 (patch) | |
tree | c8be198ff4cba7b68250672d85f63e400a3a8c7a | |
parent | 3fd1439e7b7d5b05f7c2a33c1b6dd9bd5f5a02cb (diff) |
arm64: tegra: Fix duplicate regulator on Jetson TX1
[ Upstream commit 29bcc1eaca315326d1cc883fbe9b451d1f9e3fa5 ]
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>
Signed-off-by: Sasha Levin <sashal@kernel.org>
-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 a44c56c1e56e..634373a423ef 100644 --- a/arch/arm64/boot/dts/nvidia/tegra210-p2597.dtsi +++ b/arch/arm64/boot/dts/nvidia/tegra210-p2597.dtsi @@ -1666,7 +1666,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>; |