diff options
author | Fabio Estevam <fabio.estevam@freescale.com> | 2012-07-03 22:25:44 -0300 |
---|---|---|
committer | Shawn Guo <shawn.guo@linaro.org> | 2012-07-04 11:19:40 +0800 |
commit | 6684294d27abb24e61916871c4ecfdaccc14eb03 (patch) | |
tree | a116da378d1ac3b5616460bbac67450aae7e483d /arch/arm/plat-mxc/avic.c | |
parent | 8842a9e2869cae14bbb8184004a42fc3070587fb (diff) | |
download | linux-3.10-6684294d27abb24e61916871c4ecfdaccc14eb03.tar.gz linux-3.10-6684294d27abb24e61916871c4ecfdaccc14eb03.tar.bz2 linux-3.10-6684294d27abb24e61916871c4ecfdaccc14eb03.zip |
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 <fabio.estevam@freescale.com>
Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
Diffstat (limited to 'arch/arm/plat-mxc/avic.c')
-rw-r--r-- | arch/arm/plat-mxc/avic.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/plat-mxc/avic.c b/arch/arm/plat-mxc/avic.c index f3d671ff7f1..cbd55c36def 100644 --- a/arch/arm/plat-mxc/avic.c +++ b/arch/arm/plat-mxc/avic.c @@ -26,6 +26,7 @@ #include <asm/mach/irq.h> #include <asm/exception.h> #include <mach/hardware.h> +#include <mach/irqs.h> #include "irq-common.h" |