diff options
author | Marc Zyngier <marc.zyngier@arm.com> | 2014-10-21 05:09:36 -0400 |
---|---|---|
committer | Jason Cooper <jason@lakedaemon.net> | 2014-11-01 21:58:40 -0400 |
commit | 3fe149276c8dcdc1335cb27dd7cc9726c6bc59fa (patch) | |
tree | ec91539738bea1b5aad5655d1521f33082213fd7 /drivers/irqchip | |
parent | f114040e3ea6e07372334ade75d1ee0775c355e1 (diff) |
irqchip: hip04: Convert to handle_domain_irq
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>
Link: https://lkml.kernel.org/r/1413882576-18922-1-git-send-email-marc.zyngier@arm.com
Signed-off-by: Jason Cooper <jason@lakedaemon.net>
Diffstat (limited to 'drivers/irqchip')
-rw-r--r-- | drivers/irqchip/irq-hip04.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/irqchip/irq-hip04.c b/drivers/irqchip/irq-hip04.c index 9c8f833522e6..29b8f21b74d0 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) | |||
176 | irqnr = irqstat & GICC_IAR_INT_ID_MASK; | 176 | irqnr = irqstat & GICC_IAR_INT_ID_MASK; |
177 | 177 | ||
178 | if (likely(irqnr > 15 && irqnr <= HIP04_MAX_IRQS)) { | 178 | if (likely(irqnr > 15 && irqnr <= HIP04_MAX_IRQS)) { |
179 | irqnr = irq_find_mapping(hip04_data.domain, irqnr); | 179 | handle_domain_irq(hip04_data.domain, irqnr, regs); |
180 | handle_IRQ(irqnr, regs); | ||
181 | continue; | 180 | continue; |
182 | } | 181 | } |
183 | if (irqnr < 16) { | 182 | if (irqnr < 16) { |