Commit a59e927f authored by Andrey Leonchikov's avatar Andrey Leonchikov Committed by Heiko Stuebner
Browse files

arm64: dts: rockchip: Fix USB power enable pin for BTT CB2 and Pi2



 Fix typo into regulator GPIO definition. With current
 definition - USB powered off. Valid definition can be found on "pinctrl"
 section:
 		vcc5v0_usb2t_en: vcc5v0-usb2t-en {
 				rockchip,pins = <3 RK_PD5 RK_FUNC_GPIO &pcfg_pull_none>;
 				 		};

 		vcc5v0_usb2b_en: vcc5v0-usb2b-en {
 			rockchip,pins = <4 RK_PC4 RK_FUNC_GPIO &pcfg_pull_none>;
 		};

Fixes: bfbc663d ("arm64: dts: rockchip: Add BigTreeTech CB2 and Pi2")
Signed-off-by: default avatarAndrey Leonchikov <andreil499@gmail.com>
Link: https://patch.msgid.link/20251105210741.850031-1-andreil499@gmail.com


Signed-off-by: default avatarHeiko Stuebner <heiko@sntech.de>
parent 03c7e964
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -187,7 +187,7 @@ vcc5v0_usb: regulator-vcc5v0-usb {
	vcc5v0_usb2b: regulator-vcc5v0-usb2b {
		compatible = "regulator-fixed";
		enable-active-high;
		gpio = <&gpio0 RK_PC4 GPIO_ACTIVE_HIGH>;
		gpio = <&gpio4 RK_PC4 GPIO_ACTIVE_HIGH>;
		pinctrl-names = "default";
		pinctrl-0 = <&vcc5v0_usb2b_en>;
		regulator-name = "vcc5v0_usb2b";
@@ -199,7 +199,7 @@ vcc5v0_usb2b: regulator-vcc5v0-usb2b {
	vcc5v0_usb2t: regulator-vcc5v0-usb2t {
		compatible = "regulator-fixed";
		enable-active-high;
		gpios = <&gpio0 RK_PD5 GPIO_ACTIVE_HIGH>;
		gpios = <&gpio3 RK_PD5 GPIO_ACTIVE_HIGH>;
		pinctrl-names = "default";
		pinctrl-0 = <&vcc5v0_usb2t_en>;
		regulator-name = "vcc5v0_usb2t";