aboutsummaryrefslogtreecommitdiff
path: root/arch/arm/mach-at91/board-neocore926.c
diff options
context:
space:
mode:
authorNicolas Ferre <nicolas.ferre@atmel.com>2012-10-24 16:19:47 +0200
committerNicolas Ferre <nicolas.ferre@atmel.com>2012-10-24 18:08:47 +0200
commit69e7ea04c9365626c0963ff09bbaa3a1b49e293a (patch)
tree3535fdf85a1c6d8d96b112568f82c95cc79612a1 /arch/arm/mach-at91/board-neocore926.c
parent738a0fd752dc60e20beeda6f2f0f62e58dc0e344 (diff)
ARM: at91: fix external interrupt specification in board code
Since the switch to sparse irq, we have to add the NR_IRQS_LEGACY offset to static irq numbers. It has been forgotten on these SPI irq definitions in board code. Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com> Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> Acked-by: Ludovic Desroches <ludovic.desroches@atmel.com> Cc: stable <stable@vger.kernel.org> [v3.6]
Diffstat (limited to 'arch/arm/mach-at91/board-neocore926.c')
-rw-r--r--arch/arm/mach-at91/board-neocore926.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-at91/board-neocore926.c b/arch/arm/mach-at91/board-neocore926.c
index 9cda3fd346ae..6960778af4c2 100644
--- a/arch/arm/mach-at91/board-neocore926.c
+++ b/arch/arm/mach-at91/board-neocore926.c
@@ -129,7 +129,7 @@ static struct spi_board_info neocore926_spi_devices[] = {
.max_speed_hz = 125000 * 16,
.bus_num = 0,
.platform_data = &ads_info,
- .irq = AT91SAM9263_ID_IRQ1,
+ .irq = NR_IRQS_LEGACY + AT91SAM9263_ID_IRQ1,
},
#endif
};