diff options
author | Rob Herring | 2012-11-03 12:59:51 -0500 |
---|---|---|
committer | Rob Herring | 2013-01-10 11:45:48 -0600 |
commit | cfed7d6014589f51a092463f9c4aca3683fffdb8 (patch) | |
tree | ba058165fdbb1472539470a9cb1ae10c3ad318c3 /arch | |
parent | b1cffebf1029c87e1f1984d48463ee21093a6bc7 (diff) |
ARM: GIC: set handle_arch_irq in GIC initialization
Set handle_arch_irq to gic_handle_irq. Only the first GIC initialized can
setup the handler.
Signed-off-by: Rob Herring <rob.herring@calxeda.com>
Acked-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/common/gic.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/common/gic.c b/arch/arm/common/gic.c index 788658cca960..4b4ccf31e083 100644 --- a/arch/arm/common/gic.c +++ b/arch/arm/common/gic.c @@ -767,6 +767,9 @@ void __init gic_init_bases(unsigned int gic_nr, int irq_start, #ifdef CONFIG_SMP set_smp_cross_call(gic_raise_softirq); #endif + + set_handle_irq(gic_handle_irq); + gic_chip.flags |= gic_arch_extn.flags; gic_dist_init(gic); gic_cpu_init(gic); |