From: Michael Trimarchi Date: Wed, 20 Jun 2018 21:27:54 +0000 (+0200) Subject: imx: mx6: Fix implementantion reset_misc X-Git-Tag: v2018.09-rc1~63^2~37 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=9236269de57dc1bd6574855a2d07721f49e80be8;p=oweals%2Fu-boot.git imx: mx6: Fix implementantion reset_misc lcdif_power_down should not be included in spl build to avoid build failure introduced by commit eb111bb31d882877e75e6b8083808dcaf6493b92 Signed-off-by: Michael Trimarchi Reviewed-by: Peng Fan --- diff --git a/arch/arm/mach-imx/mx6/soc.c b/arch/arm/mach-imx/mx6/soc.c index e8b6f77724..ffc2951ee7 100644 --- a/arch/arm/mach-imx/mx6/soc.c +++ b/arch/arm/mach-imx/mx6/soc.c @@ -548,9 +548,11 @@ const struct boot_mode soc_boot_modes[] = { void reset_misc(void) { +#ifndef CONFIG_SPL_BUILD #ifdef CONFIG_VIDEO_MXS lcdif_power_down(); #endif +#endif } void s_init(void)