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 <[email protected]>
Acked-by: Olof Johansson <[email protected]>
diff --git a/arch/arm/common/gic.c b/arch/arm/common/gic.c
index 788658c..4b4ccf3 100644
--- a/arch/arm/common/gic.c
+++ b/arch/arm/common/gic.c
@@ -767,6 +767,9 @@
#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);