Skip to content

Commit 65ff135

Browse files
khayash1Linus Walleij
authored andcommitted
pinctrl: uniphier: fix USB3 pin assignment for Pro4
According to pinctrl assignment for Pro4, each definition of USB#2 and USB#3 are as follows. 184: USB2VBUS 185: USB2OD 186: USB2ID 187: USB3VBUS 188: USB3OD USB#2 has an additional pin "USB2ID", but the chip doesn't use this pin while in host-mode. Considering this pin, the pin definitions for USB#3 should be {187, 188}. Signed-off-by: Kunihiko Hayashi <[email protected]> Acked-by: Masahiro Yamada <[email protected]> Signed-off-by: Linus Walleij <[email protected]>
1 parent b962e2c commit 65ff135

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/pinctrl/uniphier/pinctrl-uniphier-pro4.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1084,7 +1084,7 @@ static const unsigned usb1_pins[] = {182, 183};
10841084
static const int usb1_muxvals[] = {0, 0};
10851085
static const unsigned usb2_pins[] = {184, 185};
10861086
static const int usb2_muxvals[] = {0, 0};
1087-
static const unsigned usb3_pins[] = {186, 187};
1087+
static const unsigned usb3_pins[] = {187, 188};
10881088
static const int usb3_muxvals[] = {0, 0};
10891089
static const unsigned port_range0_pins[] = {
10901090
300, 301, 302, 303, 304, 305, 306, 307, /* PORT0x */

0 commit comments

Comments
 (0)