summaryrefslogtreecommitdiffstats
path: root/drivers/irqchip/irq-or1k-pic.c
diff options
context:
space:
mode:
authorMarc Zyngier <marc.zyngier@arm.com>2014-08-26 11:03:36 +0100
committerJason Cooper <jason@lakedaemon.net>2014-09-03 13:10:54 +0000
commitb0fee1dc7883c3c4b2319d384decdd1563cf30bb (patch)
treecdc77ca3b41e3a764db67617dccd962c519510d8 /drivers/irqchip/irq-or1k-pic.c
parent31b7b6a86e9b86b8d97b3bc47b22585074ad115b (diff)
downloadlinux-b0fee1dc7883c3c4b2319d384decdd1563cf30bb.tar.bz2
irqchip: or1k-pic: Convert to handle_domain_irq
Use the new handle_domain_irq method to handle interrupts. Signed-off-by: Marc Zyngier <marc.zyngier@arm.com> Acked-by: Stefan Kristiansson <stefan.kristiansson@saunalahti.fi> Link: https://lkml.kernel.org/r/1409047421-27649-22-git-send-email-marc.zyngier@arm.com Signed-off-by: Jason Cooper <jason@lakedaemon.net>
Diffstat (limited to 'drivers/irqchip/irq-or1k-pic.c')
-rw-r--r--drivers/irqchip/irq-or1k-pic.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/irqchip/irq-or1k-pic.c b/drivers/irqchip/irq-or1k-pic.c
index 17ff033d9925..e93d079fe069 100644
--- a/drivers/irqchip/irq-or1k-pic.c
+++ b/drivers/irqchip/irq-or1k-pic.c
@@ -113,7 +113,7 @@ static inline int pic_get_irq(int first)
else
hwirq = hwirq + first - 1;
- return irq_find_mapping(root_domain, hwirq);
+ return hwirq;
}
static void or1k_pic_handle_irq(struct pt_regs *regs)
@@ -121,7 +121,7 @@ static void or1k_pic_handle_irq(struct pt_regs *regs)
int irq = -1;
while ((irq = pic_get_irq(irq + 1)) != NO_IRQ)
- handle_IRQ(irq, regs);
+ handle_domain_irq(root_domain, irq, regs);
}
static int or1k_map(struct irq_domain *d, unsigned int irq, irq_hw_number_t hw)