From: Arnd Bergmann Date: Fri, 26 Oct 2012 20:49:09 +0000 (+0200) Subject: ARM: at91: fix at91x40 build X-Git-Tag: next-20121029~16^2~2^2~1 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=3a8852afde01682083028ee427e0678f9bbddd75;p=karo-tx-linux.git 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 --- 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); }