All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ARM: pxa: fix broken isa interrupts for zeus and viper
@ 2015-01-27  5:55 Robert Jarzmik
  2015-01-27 22:53 ` Olof Johansson
  0 siblings, 1 reply; 2+ messages in thread
From: Robert Jarzmik @ 2015-01-27  5:55 UTC (permalink / raw)
  To: linux-arm-kernel

Commit "ARM: pxa: arbitrarily set first interrupt number" broke viper
and zeus boards which still refer to PXA_ISA_IRQ() macro. Redefine
the macro, which declares the legacy interrupts from 0 to 15.

Signed-off-by: Robert Jarzmik <robert.jarzmik@free.fr>
---
 arch/arm/mach-pxa/include/mach/irqs.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm/mach-pxa/include/mach/irqs.h b/arch/arm/mach-pxa/include/mach/irqs.h
index 83e04d4..7e3ea35 100644
--- a/arch/arm/mach-pxa/include/mach/irqs.h
+++ b/arch/arm/mach-pxa/include/mach/irqs.h
@@ -14,6 +14,7 @@
 
 #include <asm/irq.h>
 
+#define PXA_ISA_IRQ(x)	(x)
 #define PXA_IRQ(x)	(NR_IRQS_LEGACY + (x))
 
 #define IRQ_SSP3	PXA_IRQ(0)	/* SSP3 service request */
-- 
2.1.0

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [PATCH] ARM: pxa: fix broken isa interrupts for zeus and viper
  2015-01-27  5:55 [PATCH] ARM: pxa: fix broken isa interrupts for zeus and viper Robert Jarzmik
@ 2015-01-27 22:53 ` Olof Johansson
  0 siblings, 0 replies; 2+ messages in thread
From: Olof Johansson @ 2015-01-27 22:53 UTC (permalink / raw)
  To: linux-arm-kernel

On Tue, Jan 27, 2015 at 06:55:10AM +0100, Robert Jarzmik wrote:
> Commit "ARM: pxa: arbitrarily set first interrupt number" broke viper
> and zeus boards which still refer to PXA_ISA_IRQ() macro. Redefine
> the macro, which declares the legacy interrupts from 0 to 15.
> 
> Signed-off-by: Robert Jarzmik <robert.jarzmik@free.fr>


Applied. Thanks.


-Olof

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2015-01-27 22:53 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-01-27  5:55 [PATCH] ARM: pxa: fix broken isa interrupts for zeus and viper Robert Jarzmik
2015-01-27 22:53 ` Olof Johansson

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.