[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20160301234532.052128133@linuxfoundation.org>
Date: Tue, 01 Mar 2016 23:54:28 +0000
From: Greg Kroah-Hartman <gregkh@...uxfoundation.org>
To: <linux-kernel@...r.kernel.org>
Cc: Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
<stable@...r.kernel.org>, Oleksij Rempel <linux@...pel-privat.de>,
<kernel@...gutronix.de>, <jason@...edaemon.net>,
<marc.zyngier@....com>, Thomas Gleixner <tglx@...utronix.de>
Subject: [PATCH 4.4 127/342] irqchip/mxs: Add missing set_handle_irq()
4.4-stable review patch. If anyone has any objections, please let me know.
------------------
From: Oleksij Rempel <linux@...pel-privat.de>
commit c5b635203032462603c503ecce91a7021c1ad44a upstream.
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: 7e4ac676ee ("irqchip/mxs: Add Alphascale ASM9260 support")
Signed-off-by: Oleksij Rempel <linux@...pel-privat.de>
Cc: kernel@...gutronix.de
Cc: jason@...edaemon.net
Cc: marc.zyngier@....com
Link: http://lkml.kernel.org/r/1454061473-24957-1-git-send-email-linux@rempel-privat.de
Signed-off-by: Thomas Gleixner <tglx@...utronix.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@...uxfoundation.org>
---
drivers/irqchip/irq-mxs.c | 1 +
1 file changed, 1 insertion(+)
--- a/drivers/irqchip/irq-mxs.c
+++ b/drivers/irqchip/irq-mxs.c
@@ -241,6 +241,7 @@ static int __init asm9260_of_init(struct
writel(0, icoll_priv.intr + i);
icoll_add_domain(np, ASM9260_NUM_IRQS);
+ set_handle_irq(icoll_handle_irq);
return 0;
}
Powered by blists - more mailing lists