From 6684294d27abb24e61916871c4ecfdaccc14eb03 Mon Sep 17 00:00:00 2001 From: Fabio Estevam Date: Tue, 3 Jul 2012 22:25:44 -0300 Subject: [PATCH] ARM: imx: Fix build error due to missing irqs.h include commit bc8966 (ARM: fiq: change FIQ_START to a variable) introduced the following build error for imx_v4_v5_defconfig: arch/arm/plat-mxc/avic.c:220:11: error: 'FIQ_START' undeclared (first use in this function) Include the missing header file to fix it. Signed-off-by: Fabio Estevam Signed-off-by: Shawn Guo --- arch/arm/plat-mxc/avic.c | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/plat-mxc/avic.c b/arch/arm/plat-mxc/avic.c index f3d671ff7f1b..cbd55c36def3 100644 --- a/arch/arm/plat-mxc/avic.c +++ b/arch/arm/plat-mxc/avic.c @@ -26,6 +26,7 @@ #include #include #include +#include #include "irq-common.h" -- 2.34.1