diff options
author | Arnd Bergmann <arnd@arndb.de> | 2012-10-26 22:49:09 +0200 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2012-10-27 17:46:48 +0200 |
commit | 0654f4ab2baa6100dc6b0b26f4f1fa3f02d10245 (patch) | |
tree | 2eb9af44ef95ef405a78d8be6f35a308a2e35a0c /arch | |
parent | 1dc506a551273b6d7638a09036188554f564d5ec (diff) | |
download | linux-0654f4ab2baa6100dc6b0b26f4f1fa3f02d10245.tar.bz2 |
ARM: at91: fix at91x40 build
patch 738a0fd7 "ARM: at91: fix external interrupts in non-DT case"
fixed a run-time error on some at91 platforms but did not apply
the same change to at91x40, which now doesn't build.
This changes at91x40 in the same way that the other platforms
were changed.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-at91/at91x40.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-at91/at91x40.c b/arch/arm/mach-at91/at91x40.c index 6bd7300a2bc5..bb7f54474b92 100644 --- a/arch/arm/mach-at91/at91x40.c +++ b/arch/arm/mach-at91/at91x40.c @@ -88,6 +88,6 @@ void __init at91x40_init_interrupts(unsigned int priority[NR_AIC_IRQS]) if (!priority) priority = at91x40_default_irq_priority; - at91_aic_init(priority); + at91_aic_init(priority, at91_extern_irq); } |