Skip to content

Commit ecf6e25

Browse files
mmindgregkh
authored andcommitted
arm64: dts: rockchip: fix rk3399-puma vcc5v0-host gpio
[ Upstream commit 7a7184f ] 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 <heiko.stuebner@theobroma-systems.com> Link: https://lore.kernel.org/r/20200604091239.424318-1-heiko@sntech.de Signed-off-by: Sasha Levin <sashal@kernel.org>
1 parent 3fe4f18 commit ecf6e25

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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)