Skip to content

Commit c5b6352

Browse files
oleremKAGA-KOKO
authored andcommitted
irqchip/mxs: Add missing set_handle_irq()
The rework of the driver missed to move the call to set_handle_irq() into asm9260_of_init(). As a consequence no interrupt entry point is installed and no interrupts are delivered Solution is simple: Install the interrupt entry handler. Fixes: 7e4ac67 ("irqchip/mxs: Add Alphascale ASM9260 support") Signed-off-by: Oleksij Rempel <[email protected]> Cc: [email protected] Cc: [email protected] Cc: [email protected] Cc: [email protected] Link: http://lkml.kernel.org/r/[email protected] Signed-off-by: Thomas Gleixner <[email protected]>
1 parent 49f3413 commit c5b6352

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

drivers/irqchip/irq-mxs.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -241,6 +241,7 @@ static int __init asm9260_of_init(struct device_node *np,
241241
writel(0, icoll_priv.intr + i);
242242

243243
icoll_add_domain(np, ASM9260_NUM_IRQS);
244+
set_handle_irq(icoll_handle_irq);
244245

245246
return 0;
246247
}

0 commit comments

Comments
 (0)