diff options
author | Kever Yang | 2019-03-29 22:48:30 +0800 |
---|---|---|
committer | Kever Yang | 2019-05-08 17:34:12 +0800 |
commit | 6459e7f5880f48f38b64989b166bde44f150e465 (patch) | |
tree | 0b9e9f17d0a1668d45998b314861b9997e284be3 /arch | |
parent | 99a1a5b195c00190eb115b09008d3a3828556053 (diff) |
rockchip: rk3368: remove uart iomux init in SPL
The iomux should have been set in board_debug_uart_init(),
do not set in board_init_f(), remove it.
Signed-off-by: Kever Yang <kever.yang@rock-chips.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-rockchip/rk3368-board-spl.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/arch/arm/mach-rockchip/rk3368-board-spl.c b/arch/arm/mach-rockchip/rk3368-board-spl.c index b055ed4aee0..c6511937123 100644 --- a/arch/arm/mach-rockchip/rk3368-board-spl.c +++ b/arch/arm/mach-rockchip/rk3368-board-spl.c @@ -10,11 +10,9 @@ #include <spl.h> #include <asm/io.h> #include <asm/arch-rockchip/periph.h> -#include <dm/pinctrl.h> void board_init_f(ulong dummy) { - struct udevice *pinctrl; struct udevice *dev; int ret; @@ -24,19 +22,6 @@ void board_init_f(ulong dummy) hang(); } - /* Set up our preloader console */ - ret = uclass_get_device(UCLASS_PINCTRL, 0, &pinctrl); - if (ret) { - pr_err("%s: pinctrl init failed: %d\n", __func__, ret); - hang(); - } - - ret = pinctrl_request_noflags(pinctrl, PERIPH_ID_UART0); - if (ret) { - pr_err("%s: failed to set up console UART\n", __func__); - hang(); - } - preloader_console_init(); ret = uclass_get_device(UCLASS_RAM, 0, &dev); |