projects
/
project
/
bcm63xx
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
585b38c
)
ARM: UniPhier: fix pin mux setting for USB port 2 of PH1-sLD8
author
Masahiro Yamada
<
[email protected]
>
Fri, 29 May 2015 08:30:09 +0000
(17:30 +0900)
committer
Masahiro Yamada
<
[email protected]
>
Sat, 30 May 2015 17:56:00 +0000
(
02:56
+0900)
The register value should be 1, not 4.
Signed-off-by: Masahiro Yamada <
[email protected]
>
arch/arm/mach-uniphier/ph1-sld8/pinctrl.c
patch
|
blob
|
history
diff --git
a/arch/arm/mach-uniphier/ph1-sld8/pinctrl.c
b/arch/arm/mach-uniphier/ph1-sld8/pinctrl.c
index 2b1dd1ed0bcdd048510cc90d50cecdf08c58a9df..130c8317366df4f3c44d7cc6ab8fd5ad018cf373 100644
(file)
--- a/
arch/arm/mach-uniphier/ph1-sld8/pinctrl.c
+++ b/
arch/arm/mach-uniphier/ph1-sld8/pinctrl.c
@@
-45,7
+45,7
@@
void pin_init(void)
sg_set_pinsel(42, 0); /* USB0OD -> USB0OD */
sg_set_pinsel(43, 0); /* USB1VBUS -> USB1VBUS */
sg_set_pinsel(44, 0); /* USB1OD -> USB1OD */
- /* sg_set_pinsel(114,
4
); */ /* TXD1 -> USB2VBUS (shared with UART) */
- /* sg_set_pinsel(115,
4
); */ /* RXD1 -> USB2OD */
+ /* sg_set_pinsel(114,
1
); */ /* TXD1 -> USB2VBUS (shared with UART) */
+ /* sg_set_pinsel(115,
1
); */ /* RXD1 -> USB2OD */
#endif
}