From: Fabio Estevam Date: Wed, 4 Jul 2012 01:25:44 +0000 (-0300) Subject: ARM: imx: Fix build error due to missing irqs.h include X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=6684294d27abb24e61916871c4ecfdaccc14eb03;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.git 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 --- 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"