summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOleksij Rempel <linux@rempel-privat.de>2016-01-29 10:57:53 +0100
committerJason Cooper <jason@lakedaemon.net>2016-02-17 21:59:00 +0000
commitaeb67ae7d1a318c8456345b8012474be6a3ff74a (patch)
tree0ba939945c42d64804dbbd1d2dcccb7f84d2eedf
parent92e963f50fc74041b5e9e744c330dca48e04f08d (diff)
downloadlinux-aeb67ae7d1a318c8456345b8012474be6a3ff74a.tar.gz
linux-aeb67ae7d1a318c8456345b8012474be6a3ff74a.tar.bz2
linux-aeb67ae7d1a318c8456345b8012474be6a3ff74a.zip
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: Install the interrupt entry handler. Fixes: 7e4ac676ee ("irqchip/mxs: Add Alphascale ASM9260 support") Signed-off-by: Oleksij Rempel <linux@rempel-privat.de> Link: https://lkml.kernel.org/r/1454061473-24957-1-git-send-email-linux@rempel-privat.de Signed-off-by: Jason Cooper <jason@lakedaemon.net>
-rw-r--r--drivers/irqchip/irq-mxs.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/irqchip/irq-mxs.c b/drivers/irqchip/irq-mxs.c
index c22e2d40cb30..efe50845939d 100644
--- a/drivers/irqchip/irq-mxs.c
+++ b/drivers/irqchip/irq-mxs.c
@@ -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;
}