rockchip: rk3399: remove pinctrl init in spl_board_init
authorKever Yang <kever.yang@rock-chips.com>
Tue, 9 Jul 2019 13:55:27 +0000 (21:55 +0800)
committerKever Yang <kever.yang@rock-chips.com>
Sat, 20 Jul 2019 15:59:44 +0000 (23:59 +0800)
The pinctrl will default init the io while driver is probe
with new pinctrl driver.

Signed-off-by: Kever Yang <kever.yang@rock-chips.com>
arch/arm/mach-rockchip/rk3399-board-spl.c

index 890d80025f6d7f28e5ad63f7b41023740f187a45..2333694caa0b7a5a3800b2dcc763044cffeb1be7 100644 (file)
@@ -21,7 +21,6 @@
 #include <asm/arch-rockchip/periph.h>
 #include <asm/arch-rockchip/sys_proto.h>
 #include <power/regulator.h>
-#include <dm/pinctrl.h>
 
 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);