From: Rob Herring Date: Thu, 9 Feb 2012 00:26:34 +0000 (-0600) Subject: ARM: make entry-macro.S depend on !MULTI_IRQ_HANDLER X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=243c86542aeeb41d9ab78d3aa44fa6b4854fdb67;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git ARM: make entry-macro.S depend on !MULTI_IRQ_HANDLER With the removal of disable_fiq on rpc and addition MULTI_IRQ_HANDLER, entry-macro.S is no longer needed for platforms that select MULTI_IRQ_HANDLER and the include of it can be conditional. Signed-off-by: Rob Herring Acked-by: Nicolas Pitre Acked-by: H Hartley Sweeten --- diff --git a/arch/arm/kernel/entry-armv.S b/arch/arm/kernel/entry-armv.S index be16a48007b4..22f0ed324f37 100644 --- a/arch/arm/kernel/entry-armv.S +++ b/arch/arm/kernel/entry-armv.S @@ -19,7 +19,9 @@ #include #include #include +#ifndef CONFIG_MULTI_IRQ_HANDLER #include +#endif #include #include #include @@ -1101,7 +1103,6 @@ __stubs_start: * get out of that mode without clobbering one register. */ vector_fiq: - disable_fiq subs pc, lr, #4 /*=============================================================================