diff options
| author | Arnd Bergmann <arnd@arndb.de> | 2016-05-19 04:31:31 -0400 |
|---|---|---|
| committer | Arnd Bergmann <arnd@arndb.de> | 2016-05-24 15:32:46 -0400 |
| commit | 09564b7d84d753e4aa1198017b5a5e86c7b0539f (patch) | |
| tree | 430f9d9c3e5627b564c4b02f2771c2caf83e4e37 | |
| parent | 342f3f9bf6fc2af67f00a07703053e2b1f882afd (diff) | |
ARM: lpc32xx: fix NR_IRQS confict
With the change to sparse IRQs, the lpc32xx platform gets a warning about
conflicting macros:
In file included from arch/arm/mach-lpc32xx/irq.c:31:0:
arch/arm/mach-lpc32xx/include/mach/irqs.h:115:0: warning: "NR_IRQS" redefined
#define NR_IRQS 96
arch/arm/include/asm/irq.h:9:0: note: this is the location of the previous definition
#define NR_IRQS NR_IRQS_LEGACY
One such instance was in the old irq driver that is now removed by
the previous patch, but any other file including mach/irqs.h still
has the issue. Since none of them use this constant, we can just
remove the old definition.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Fixes: 8cb17b5ed017 ("irqchip: Add LPC32xx interrupt controller driver")
| -rw-r--r-- | arch/arm/mach-lpc32xx/include/mach/irqs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-lpc32xx/include/mach/irqs.h b/arch/arm/mach-lpc32xx/include/mach/irqs.h index 9e3b90df32e1..00190535df90 100644 --- a/arch/arm/mach-lpc32xx/include/mach/irqs.h +++ b/arch/arm/mach-lpc32xx/include/mach/irqs.h | |||
| @@ -112,6 +112,6 @@ | |||
| 112 | #define IRQ_LPC32XX_GPI_06 LPC32XX_SIC2_IRQ(28) | 112 | #define IRQ_LPC32XX_GPI_06 LPC32XX_SIC2_IRQ(28) |
| 113 | #define IRQ_LPC32XX_SYSCLK LPC32XX_SIC2_IRQ(31) | 113 | #define IRQ_LPC32XX_SYSCLK LPC32XX_SIC2_IRQ(31) |
| 114 | 114 | ||
| 115 | #define NR_IRQS 96 | 115 | #define LPC32XX_NR_IRQS 96 |
| 116 | 116 | ||
| 117 | #endif | 117 | #endif |
