Commit cc372ce4 authored by Chen-Yu Tsai's avatar Chen-Yu Tsai Committed by Greg Kroah-Hartman

ARM: dts: sun6i: hummingbird: Fix VDD-CPU and VDD-GPU regulator names

commit 976d84fc upstream.

The VDD-CPU and VDD-GPU regulators were incorrectly swapped.

Fixes: bab03561 ("ARM: dts: sun6i: hummingbird: Add AXP221 regulator
       nodes")
Signed-off-by: default avatarChen-Yu Tsai <wens@csie.org>
Signed-off-by: default avatarMaxime Ripard <maxime.ripard@free-electrons.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent b233e613
...@@ -184,18 +184,18 @@ vcc_3v0: dcdc1 { ...@@ -184,18 +184,18 @@ vcc_3v0: dcdc1 {
regulator-name = "vcc-3v0"; regulator-name = "vcc-3v0";
}; };
vdd_cpu: dcdc2 { vdd_gpu: dcdc2 {
regulator-always-on; regulator-always-on;
regulator-min-microvolt = <700000>; regulator-min-microvolt = <700000>;
regulator-max-microvolt = <1320000>; regulator-max-microvolt = <1320000>;
regulator-name = "vdd-cpu"; regulator-name = "vdd-gpu";
}; };
vdd_gpu: dcdc3 { vdd_cpu: dcdc3 {
regulator-always-on; regulator-always-on;
regulator-min-microvolt = <700000>; regulator-min-microvolt = <700000>;
regulator-max-microvolt = <1320000>; regulator-max-microvolt = <1320000>;
regulator-name = "vdd-gpu"; regulator-name = "vdd-cpu";
}; };
vdd_sys_dll: dcdc4 { vdd_sys_dll: dcdc4 {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment