Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c5b63520 authored by Oleksij Rempel's avatar Oleksij Rempel Committed by Thomas Gleixner
Browse files

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: 7e4ac676 ("irqchip/mxs: Add Alphascale ASM9260 support")
Signed-off-by: default avatarOleksij Rempel <linux@rempel-privat.de>
Cc: kernel@pengutronix.de
Cc: jason@lakedaemon.net
Cc: marc.zyngier@arm.com
Cc: stable@vger.kernel.org
Link: http://lkml.kernel.org/r/1454061473-24957-1-git-send-email-linux@rempel-privat.de


Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
parent 49f34134
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -241,6 +241,7 @@ static int __init asm9260_of_init(struct device_node *np,
		writel(0, icoll_priv.intr + i);

	icoll_add_domain(np, ASM9260_NUM_IRQS);
	set_handle_irq(icoll_handle_irq);

	return 0;
}