From: Fabio Estevam Date: Tue, 11 Dec 2018 18:40:37 +0000 (-0200) Subject: mx7: Do not call lcdif_power_down() in the SPL case X-Git-Tag: v2019.04-rc1~17^2~50 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bab289cbe993c1ee26a6301e7019c3078b60393a;p=platform%2Fkernel%2Fu-boot.git mx7: Do not call lcdif_power_down() in the SPL case Like it was done on imx6 in commit 9236269de57d ("imx: mx6: Fix implementantion reset_misc") Do not call lcdif_power_down() in the SPL case to fix the following build error: LD spl/u-boot-spl MKIMAGE u-boot.img arch/arm/mach-imx/built-in.o: In function `reset_misc': /home/fabio/ossystems/u-boot/arch/arm/mach-imx/mx7/soc.c:372: undefined reference to `lcdif_power_down' scripts/Makefile.spl:375: recipe for target 'spl/u-boot-spl' failed Signed-off-by: Fabio Estevam Signed-off-by: Otavio Salvador Signed-off-by: Fabio Estevam Signed-off-by: Otavio Salvador Reviewed-by: Peng Fan --- diff --git a/arch/arm/mach-imx/mx7/soc.c b/arch/arm/mach-imx/mx7/soc.c index 3f74f8a..7cfdff0 100644 --- a/arch/arm/mach-imx/mx7/soc.c +++ b/arch/arm/mach-imx/mx7/soc.c @@ -368,8 +368,10 @@ void s_init(void) void reset_misc(void) { +#ifndef CONFIG_SPL_BUILD #ifdef CONFIG_VIDEO_MXS lcdif_power_down(); #endif +#endif }