From: Fabio Estevam Date: Sat, 23 Sep 2017 02:45:28 +0000 (-0300) Subject: mx6sabresd: Avoid calling setup_display() from SPL code X-Git-Tag: v2017.11-rc2~57^2~34 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=b5d959910b75219b7b64dbc46145744616a0c001;p=u-boot mx6sabresd: 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 Signed-off-by: Fabio Estevam Reviewed-by: Stefano Babic --- diff --git a/board/freescale/mx6sabresd/mx6sabresd.c b/board/freescale/mx6sabresd/mx6sabresd.c index 5b50bc815f..f14b75927c 100644 --- a/board/freescale/mx6sabresd/mx6sabresd.c +++ b/board/freescale/mx6sabresd/mx6sabresd.c @@ -620,9 +620,6 @@ int board_ehci_power(int port, int on) int board_early_init_f(void) { setup_iomux_uart(); -#if defined(CONFIG_VIDEO_IPUV3) - setup_display(); -#endif return 0; } @@ -639,6 +636,9 @@ int board_init(void) setup_i2c(1, CONFIG_SYS_I2C_SPEED, 0x7f, &mx6q_i2c_pad_info1); else setup_i2c(1, CONFIG_SYS_I2C_SPEED, 0x7f, &mx6dl_i2c_pad_info1); +#if defined(CONFIG_VIDEO_IPUV3) + setup_display(); +#endif #ifdef CONFIG_USB_EHCI_MX6 setup_usb(); #endif