diff options
author | Fabio Estevam <fabio.estevam@freescale.com> | 2012-07-23 04:41:18 -0300 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2012-07-28 14:26:57 -0700 |
commit | 52c2ebd757d94f4a7215c3fc906646b24f44ecab (patch) | |
tree | 79bbf4bb83d69302613fb665b13cd5f30f119d0e /arch | |
parent | fa7c865ad999d6ca340bca471fab7f3a3e6ae011 (diff) | |
download | blackbird-op-linux-52c2ebd757d94f4a7215c3fc906646b24f44ecab.tar.gz blackbird-op-linux-52c2ebd757d94f4a7215c3fc906646b24f44ecab.zip |
ARM: mxc: Include missing irqs.h header
Include irqs.h in order to fix the following build error:
arch/arm/plat-mxc/tzic.c:195:11: error: 'FIQ_START' undeclared (first use in this function)
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Acked-by: Dirk Behme <dirk.behme@de.bosch.com>
Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/plat-mxc/tzic.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/plat-mxc/tzic.c b/arch/arm/plat-mxc/tzic.c index c2193178210b..3ed1adbc09f8 100644 --- a/arch/arm/plat-mxc/tzic.c +++ b/arch/arm/plat-mxc/tzic.c @@ -23,6 +23,7 @@ #include <mach/hardware.h> #include <mach/common.h> +#include <mach/irqs.h> #include "irq-common.h" |