diff mbox series

[V5,09/44] arm: imx: parse-container: guard included header files

Message ID 20210807080113.16020-10-peng.fan@oss.nxp.com
State New
Headers show
Series imx: add i.MX8ULP support | expand

Commit Message

Peng Fan (OSS) Aug. 7, 2021, 8 a.m. UTC
From: Peng Fan <peng.fan@nxp.com>


Guard included sci.h with CONFIG_AHAB_BOOT to avoid build failure
for i.MX8ULP

Signed-off-by: Peng Fan <peng.fan@nxp.com>

---
 arch/arm/mach-imx/parse-container.c | 2 ++
 1 file changed, 2 insertions(+)

-- 
2.30.0
diff mbox series

Patch

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 <log.h>
 #include <spl.h>
 #include <asm/mach-imx/image.h>
+#ifdef CONFIG_AHAB_BOOT
 #include <asm/arch/sci/sci.h>
+#endif
 
 #define SEC_SECURE_RAM_BASE		0x31800000UL
 #define SEC_SECURE_RAM_END_BASE		(SEC_SECURE_RAM_BASE + 0xFFFFUL)