From: Peng Fan Date: Sat, 7 Aug 2021 08:00:38 +0000 (+0800) Subject: arm: imx: parse-container: guard included header files X-Git-Url: http://git.dujemihanovic.xyz/?a=commitdiff_plain;h=20ed81eaebeca29724a05466496eda8f49bc9a0d;p=u-boot.git arm: imx: parse-container: guard included header files Guard included sci.h with CONFIG_AHAB_BOOT to avoid build failure for i.MX8ULP Signed-off-by: Peng Fan --- diff --git a/arch/arm/mach-imx/parse-container.c b/arch/arm/mach-imx/parse-container.c index e4354bf930..039a4c7303 100644 --- a/arch/arm/mach-imx/parse-container.c +++ b/arch/arm/mach-imx/parse-container.c @@ -8,7 +8,9 @@ #include #include #include +#ifdef CONFIG_AHAB_BOOT #include +#endif #define SEC_SECURE_RAM_BASE 0x31800000UL #define SEC_SECURE_RAM_END_BASE (SEC_SECURE_RAM_BASE + 0xFFFFUL)