aboutsummaryrefslogtreecommitdiff
path: root/board/freescale/mx6sabresd
diff options
context:
space:
mode:
authorFabio Estevam <fabio.estevam@nxp.com>2017-09-22 23:45:28 -0300
committerStefano Babic <sbabic@denx.de>2017-10-12 17:30:32 +0200
commitb5d959910b75219b7b64dbc46145744616a0c001 (patch)
tree288e12eb9c9c8771602fba98c150eb5d002f2e3d /board/freescale/mx6sabresd
parent1b22c5ba496ffc9b0702919d58c410ed1527ab63 (diff)
downloadu-boot-b5d959910b75219b7b64dbc46145744616a0c001.zip
u-boot-b5d959910b75219b7b64dbc46145744616a0c001.tar.gz
u-boot-b5d959910b75219b7b64dbc46145744616a0c001.tar.bz2
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 <sbabic@denx.de> Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com> Reviewed-by: Stefano Babic <sbabic@denx.de>
Diffstat (limited to 'board/freescale/mx6sabresd')
-rw-r--r--board/freescale/mx6sabresd/mx6sabresd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/board/freescale/mx6sabresd/mx6sabresd.c b/board/freescale/mx6sabresd/mx6sabresd.c
index 5b50bc8..f14b759 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