diff options
author | Fabio Estevam | 2017-09-22 23:45:30 -0300 |
---|---|---|
committer | Stefano Babic | 2017-10-12 17:30:32 +0200 |
commit | 1b853e4793121e58bf52bf1320ebd6b5840620c8 (patch) | |
tree | 3bd5d307c8322bcb5eb1097e18dd33615179b90f /board/wandboard | |
parent | 5e5b20c89fc91759411af4180fa3d31c79186512 (diff) |
wandboard: Avoid calling setup_display() from SPL code
There is no need call setup_display() from SPL code, so move it to
board_init(), which executes only in U-Boot proper.
Reported-by: Stefano Babic <sbabic@denx.de>
Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>
Reviewed-by: Stefano Babic <sbabic@denx.de>
Diffstat (limited to 'board/wandboard')
-rw-r--r-- | board/wandboard/wandboard.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/board/wandboard/wandboard.c b/board/wandboard/wandboard.c index adfcf485627..dde49889895 100644 --- a/board/wandboard/wandboard.c +++ b/board/wandboard/wandboard.c @@ -376,9 +376,6 @@ int board_eth_init(bd_t *bis) int board_early_init_f(void) { setup_iomux_uart(); -#if defined(CONFIG_VIDEO_IPUV3) - setup_display(); -#endif #ifdef CONFIG_SATA /* Only mx6q wandboard has SATA */ if (is_cpu_type(MXC_CPU_MX6Q)) @@ -448,6 +445,8 @@ int board_init(void) setup_i2c(1, CONFIG_SYS_I2C_SPEED, 0x7f, &mx6q_i2c2_pad_info); else setup_i2c(1, CONFIG_SYS_I2C_SPEED, 0x7f, &mx6dl_i2c2_pad_info); + + setup_display(); #endif return 0; |