diff options
author | Chen-Yu Tsai <wens@csie.org> | 2015-10-10 22:48:56 +0800 |
---|---|---|
committer | Maxime Ripard <maxime.ripard@free-electrons.com> | 2015-10-13 20:45:50 +0200 |
commit | 976d84fce6aa1e5bf92b8d06d69014ac45fd5fad (patch) | |
tree | d089707d10e09d2d75cd533d28a01f9c612b1f69 /arch/arm/boot/dts/sun6i-a31-hummingbird.dts | |
parent | 8a880ee6dab647b9acdced3d4d5bcdbafca78254 (diff) | |
download | talos-obmc-linux-976d84fce6aa1e5bf92b8d06d69014ac45fd5fad.tar.gz talos-obmc-linux-976d84fce6aa1e5bf92b8d06d69014ac45fd5fad.zip |
ARM: dts: sun6i: hummingbird: Fix VDD-CPU and VDD-GPU regulator names
The VDD-CPU and VDD-GPU regulators were incorrectly swapped.
Fixes: bab03561224ba ("ARM: dts: sun6i: hummingbird: Add AXP221 regulator
nodes")
Signed-off-by: Chen-Yu Tsai <wens@csie.org>
Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Diffstat (limited to 'arch/arm/boot/dts/sun6i-a31-hummingbird.dts')
-rw-r--r-- | arch/arm/boot/dts/sun6i-a31-hummingbird.dts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/arm/boot/dts/sun6i-a31-hummingbird.dts b/arch/arm/boot/dts/sun6i-a31-hummingbird.dts index f9d9fc07bc63..e25d4924dbe7 100644 --- a/arch/arm/boot/dts/sun6i-a31-hummingbird.dts +++ b/arch/arm/boot/dts/sun6i-a31-hummingbird.dts @@ -191,18 +191,18 @@ regulator-name = "vcc-3v0"; }; - vdd_cpu: dcdc2 { + vdd_gpu: dcdc2 { regulator-always-on; regulator-min-microvolt = <700000>; regulator-max-microvolt = <1320000>; - regulator-name = "vdd-cpu"; + regulator-name = "vdd-gpu"; }; - vdd_gpu: dcdc3 { + vdd_cpu: dcdc3 { regulator-always-on; regulator-min-microvolt = <700000>; regulator-max-microvolt = <1320000>; - regulator-name = "vdd-gpu"; + regulator-name = "vdd-cpu"; }; vdd_sys_dll: dcdc4 { |