From: Janusz Krzysztofik Date: Wed, 28 Apr 2010 00:58:25 +0000 (+0000) Subject: omap: add missing FIQ_START definition required forarch/arm/kernel/fiq.c compilation X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=1c4da2b737cce57f0c17344cda7f9ba1d206bfa5;p=GitHub%2Fmt8127%2Fandroid_kernel_alcatel_ttab.git omap: add missing FIQ_START definition required forarch/arm/kernel/fiq.c compilation Several ARM platforms/machines that use FIQ define their value of FIQ_START. Since FIQ is not implemented for OMAP yet, this definition is missing from OMAP header files. Put an arbitrary value for FIQ_START into plat/irqs.h for OMAP. Even if not used by the FIQ handler for Amstrad Delta, this is required for successfull compilation of arch/arm/plat-omap/fiq.c that provides several usefull functions. Signed-off-by: Janusz Krzysztofik Signed-off-by: Tony Lindgren --- diff --git a/arch/arm/plat-omap/include/plat/irqs.h b/arch/arm/plat-omap/include/plat/irqs.h index 401701977dbb..c01d9f08a198 100644 --- a/arch/arm/plat-omap/include/plat/irqs.h +++ b/arch/arm/plat-omap/include/plat/irqs.h @@ -428,4 +428,8 @@ void omap3_intc_resume_idle(void); #include +#ifdef CONFIG_FIQ +#define FIQ_START 1024 +#endif + #endif