From: Fabio Estevam Date: Sat, 23 Sep 2017 02:45:29 +0000 (-0300) Subject: cgtqmx6eval: Avoid calling setup_display() from SPL code X-Git-Tag: v2017.11-rc2~57^2~33 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=5e5b20c89fc91759411af4180fa3d31c79186512;p=u-boot cgtqmx6eval: 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/congatec/cgtqmx6eval/cgtqmx6eval.c b/board/congatec/cgtqmx6eval/cgtqmx6eval.c index 2ed66d3ba3..d42cc941d6 100644 --- a/board/congatec/cgtqmx6eval/cgtqmx6eval.c +++ b/board/congatec/cgtqmx6eval/cgtqmx6eval.c @@ -683,8 +683,6 @@ int overwrite_console(void) int board_early_init_f(void) { setup_iomux_uart(); - setup_display(); - #ifdef CONFIG_MXC_SPI setup_spi(); #endif @@ -702,6 +700,8 @@ int board_init(void) else setup_i2c(1, CONFIG_SYS_I2C_SPEED, 0x7f, &mx6dl_i2c_pad_info1); + setup_display(); + #ifdef CONFIG_SATA setup_sata(); #endif