Skip to content

Commit 7a7184f

Browse files
committed
arm64: dts: rockchip: fix rk3399-puma vcc5v0-host gpio
The puma vcc5v0_host regulator node currently uses opposite active-values for the enable pin. The gpio-declaration uses active-high while the separate enable-active-low property marks the pin as active low. While on the kernel side this works ok, other DT users may get confused - as seen with uboot right now. So bring this in line and make both properties match, similar to the gmac fix. Fixes: 2c66fc3 ("arm64: dts: rockchip: add RK3399-Q7 (Puma) SoM") Signed-off-by: Heiko Stuebner <[email protected]> Link: https://lore.kernel.org/r/[email protected]
1 parent 2300e6d commit 7a7184f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/arm64/boot/dts/rockchip/rk3399-puma.dtsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@
101101

102102
vcc5v0_host: vcc5v0-host-regulator {
103103
compatible = "regulator-fixed";
104-
gpio = <&gpio4 RK_PA3 GPIO_ACTIVE_HIGH>;
104+
gpio = <&gpio4 RK_PA3 GPIO_ACTIVE_LOW>;
105105
enable-active-low;
106106
pinctrl-names = "default";
107107
pinctrl-0 = <&vcc5v0_host_en>;

0 commit comments

Comments
 (0)