Skip to content

Commit 45f5d5a

Browse files
geertuhorms
authored andcommitted
arm64: dts: renesas: r8a77995: draak: Fix backlight regulator name
Currently there are two nodes named "regulator1" in the Draak DTS: a 3.3V regulator for the eMMC and the LVDS decoder, and a 12V regulator for the backlight. This causes the former to be overwritten by the latter. Fix this by renaming all regulators with numerical suffixes to use named suffixes, which are less likely to conflict. Fixes: 4fbd415 ("arm64: dts: renesas: r8a77995: draak: Add backlight") Signed-off-by: Geert Uytterhoeven <[email protected]> Signed-off-by: Simon Horman <[email protected]>
1 parent 5f9e832 commit 45f5d5a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

arch/arm64/boot/dts/renesas/r8a77995-draak.dts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797
reg = <0x0 0x48000000 0x0 0x18000000>;
9898
};
9999

100-
reg_1p8v: regulator0 {
100+
reg_1p8v: regulator-1p8v {
101101
compatible = "regulator-fixed";
102102
regulator-name = "fixed-1.8V";
103103
regulator-min-microvolt = <1800000>;
@@ -106,7 +106,7 @@
106106
regulator-always-on;
107107
};
108108

109-
reg_3p3v: regulator1 {
109+
reg_3p3v: regulator-3p3v {
110110
compatible = "regulator-fixed";
111111
regulator-name = "fixed-3.3V";
112112
regulator-min-microvolt = <3300000>;
@@ -115,7 +115,7 @@
115115
regulator-always-on;
116116
};
117117

118-
reg_12p0v: regulator1 {
118+
reg_12p0v: regulator-12p0v {
119119
compatible = "regulator-fixed";
120120
regulator-name = "D12.0V";
121121
regulator-min-microvolt = <12000000>;

0 commit comments

Comments
 (0)