* [PATCH] irqchip: hip04: Convert to handle_domain_irq
@ 2014-10-21 9:09 Marc Zyngier
2014-11-02 1:59 ` Jason Cooper
0 siblings, 1 reply; 2+ messages in thread
From: Marc Zyngier @ 2014-10-21 9:09 UTC (permalink / raw)
To: linux-arm-kernel
The HIP04 GIC-like irqchip escaped the conversion to handle_domain_irq.
Let's give it the treatment it deserves.
Cc: Haojian Zhuang <haojian.zhuang@linaro.org>
Cc: Jason Cooper <jason@lakedaemon.net>
Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
---
drivers/irqchip/irq-hip04.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/drivers/irqchip/irq-hip04.c b/drivers/irqchip/irq-hip04.c
index 9c8f8335..29b8f21 100644
--- a/drivers/irqchip/irq-hip04.c
+++ b/drivers/irqchip/irq-hip04.c
@@ -176,8 +176,7 @@ static void __exception_irq_entry hip04_handle_irq(struct pt_regs *regs)
irqnr = irqstat & GICC_IAR_INT_ID_MASK;
if (likely(irqnr > 15 && irqnr <= HIP04_MAX_IRQS)) {
- irqnr = irq_find_mapping(hip04_data.domain, irqnr);
- handle_IRQ(irqnr, regs);
+ handle_domain_irq(hip04_data.domain, irqnr, regs);
continue;
}
if (irqnr < 16) {
--
2.0.4
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [PATCH] irqchip: hip04: Convert to handle_domain_irq
2014-10-21 9:09 [PATCH] irqchip: hip04: Convert to handle_domain_irq Marc Zyngier
@ 2014-11-02 1:59 ` Jason Cooper
0 siblings, 0 replies; 2+ messages in thread
From: Jason Cooper @ 2014-11-02 1:59 UTC (permalink / raw)
To: linux-arm-kernel
On Tue, Oct 21, 2014 at 10:09:36AM +0100, Marc Zyngier wrote:
> The HIP04 GIC-like irqchip escaped the conversion to handle_domain_irq.
> Let's give it the treatment it deserves.
>
> Cc: Haojian Zhuang <haojian.zhuang@linaro.org>
> Cc: Jason Cooper <jason@lakedaemon.net>
> Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
> ---
> drivers/irqchip/irq-hip04.c | 3 +--
> 1 file changed, 1 insertion(+), 2 deletions(-)
Applied to irqchip/core
thx,
Jason.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-11-02 1:59 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-21 9:09 [PATCH] irqchip: hip04: Convert to handle_domain_irq Marc Zyngier
2014-11-02 1:59 ` Jason Cooper
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).