diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2015-05-29 17:30:09 +0900 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2015-05-31 02:56:00 +0900 |
commit | 28148b060d69bc227aed44f0025e61a0ccd4f39a (patch) | |
tree | e22680cf85f850c31535b994e84a02cc927020ba /arch | |
parent | 585b38c585aef62841e46cc73484a6b17515312d (diff) | |
download | u-boot-imx-28148b060d69bc227aed44f0025e61a0ccd4f39a.zip u-boot-imx-28148b060d69bc227aed44f0025e61a0ccd4f39a.tar.gz u-boot-imx-28148b060d69bc227aed44f0025e61a0ccd4f39a.tar.bz2 |
ARM: UniPhier: fix pin mux setting for USB port 2 of PH1-sLD8
The register value should be 1, not 4.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-uniphier/ph1-sld8/pinctrl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-uniphier/ph1-sld8/pinctrl.c b/arch/arm/mach-uniphier/ph1-sld8/pinctrl.c index 2b1dd1e..130c831 100644 --- 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 } |