mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
apalis_imx6: 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>
This commit is contained in:
parent
ae40e82eef
commit
f89bfe7c17
1 changed files with 4 additions and 4 deletions
|
@ -756,10 +756,6 @@ int board_early_init_f(void)
|
|||
#else
|
||||
setup_iomux_dce_uart();
|
||||
#endif
|
||||
|
||||
#if defined(CONFIG_VIDEO_IPUV3)
|
||||
setup_display();
|
||||
#endif
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -781,6 +777,10 @@ int board_init(void)
|
|||
setup_i2c(1, CONFIG_SYS_I2C_SPEED, 0x7f, &i2c_pad_info_loc);
|
||||
setup_i2c(2, CONFIG_SYS_I2C_SPEED, 0x7f, &i2c_pad_info3);
|
||||
|
||||
#if defined(CONFIG_VIDEO_IPUV3)
|
||||
setup_display();
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_TDX_CMD_IMX_MFGR
|
||||
(void) pmic_init();
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue