diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2016-04-28 15:37:16 +0900 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2016-05-01 01:13:45 +0900 |
commit | bef4b024e9839ea7afe689b050fc95118eeb0b01 (patch) | |
tree | dc1c5f047d8b2dc01443ef4caceb920f334fe54a /arch/arm/mach-uniphier/early-pinctrl | |
parent | 5eb4150e84e55057a3504b2cb06d7f5c145c866f (diff) | |
download | u-boot-imx-bef4b024e9839ea7afe689b050fc95118eeb0b01.zip u-boot-imx-bef4b024e9839ea7afe689b050fc95118eeb0b01.tar.gz u-boot-imx-bef4b024e9839ea7afe689b050fc95118eeb0b01.tar.bz2 |
ARM: uniphier: move pin-mux code into pin_init function
The code in uniphier_sld3_sbc_init() is pin-muxing, so it would
be a better fit in uniphier_sld3_early_pin_init().
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'arch/arm/mach-uniphier/early-pinctrl')
-rw-r--r-- | arch/arm/mach-uniphier/early-pinctrl/early-pinctrl-sld3.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/mach-uniphier/early-pinctrl/early-pinctrl-sld3.c b/arch/arm/mach-uniphier/early-pinctrl/early-pinctrl-sld3.c index 22c07fb..6c5d58f 100644 --- a/arch/arm/mach-uniphier/early-pinctrl/early-pinctrl-sld3.c +++ b/arch/arm/mach-uniphier/early-pinctrl/early-pinctrl-sld3.c @@ -22,5 +22,7 @@ int uniphier_sld3_early_pin_init(const struct uniphier_board_data *bd) sg_set_pinsel(102, 2, 4, 4); /* TXD2 */ #endif + sg_set_pinsel(99, 1, 4, 4); /* GPIO26 -> EA24 */ + return 0; } |