From: Kever Yang Date: Tue, 9 Jul 2019 13:55:27 +0000 (+0800) Subject: rockchip: rk3399: remove pinctrl init in spl_board_init X-Git-Url: http://git.dujemihanovic.xyz/?a=commitdiff_plain;h=7958a85bca4b399b99d022de95970b6689030135;p=u-boot.git rockchip: rk3399: remove pinctrl init in spl_board_init The pinctrl will default init the io while driver is probe with new pinctrl driver. Signed-off-by: Kever Yang --- diff --git a/arch/arm/mach-rockchip/rk3399-board-spl.c b/arch/arm/mach-rockchip/rk3399-board-spl.c index 890d80025f..2333694caa 100644 --- a/arch/arm/mach-rockchip/rk3399-board-spl.c +++ b/arch/arm/mach-rockchip/rk3399-board-spl.c @@ -21,7 +21,6 @@ #include #include #include -#include void board_return_to_bootrom(void) { @@ -133,7 +132,6 @@ void secure_timer_init(void) void board_init_f(ulong dummy) { - struct udevice *pinctrl; struct udevice *dev; struct rk3399_pmusgrf_regs *sgrf; struct rk3399_grf_regs *grf; @@ -192,12 +190,6 @@ void board_init_f(ulong dummy) secure_timer_init(); - ret = uclass_get_device(UCLASS_PINCTRL, 0, &pinctrl); - if (ret) { - pr_err("Pinctrl init failed: %d\n", ret); - return; - } - ret = uclass_get_device(UCLASS_RAM, 0, &dev); if (ret) { pr_err("DRAM init failed: %d\n", ret);