From: Felipe Balbi Date: Tue, 9 Sep 2014 00:54:43 +0000 (-0700) Subject: arm: omap: irq: call set_handle_irq() from intc_of_init X-Git-Tag: v3.18-rc1~118^2~10^2~16 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=b15c76b74896f1a2c60fff13fdf20d07468de323;p=~emulex%2Finfiniband.git arm: omap: irq: call set_handle_irq() from intc_of_init this will let us drop .handle_irq and .init_irq fields from our generic machine_descs. Signed-off-by: Felipe Balbi Signed-off-by: Tony Lindgren --- diff --git a/arch/arm/mach-omap2/irq.c b/arch/arm/mach-omap2/irq.c index fc886e2e028..ee9f1e81070 100644 --- a/arch/arm/mach-omap2/irq.c +++ b/arch/arm/mach-omap2/irq.c @@ -314,6 +314,8 @@ static int __init intc_of_init(struct device_node *node, omap_init_irq(res.start, nr_irq, of_node_get(node)); + set_handle_irq(omap2_intc_handle_irq); + return 0; }