projects
/
platform
/
kernel
/
linux-exynos.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
21d06d9
)
irqchip: versatile-fpga: Convert to handle_domain_irq
author
Marc Zyngier
<marc.zyngier@arm.com>
Tue, 26 Aug 2014 10:03:29 +0000
(11:03 +0100)
committer
Jason Cooper
<jason@lakedaemon.net>
Wed, 3 Sep 2014 13:10:43 +0000
(13:10 +0000)
Use the new handle_domain_irq method to handle interrupts.
Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
Link:
https://lkml.kernel.org/r/1409047421-27649-15-git-send-email-marc.zyngier@arm.com
Signed-off-by: Jason Cooper <jason@lakedaemon.net>
drivers/irqchip/irq-versatile-fpga.c
patch
|
blob
|
history
diff --git
a/drivers/irqchip/irq-versatile-fpga.c
b/drivers/irqchip/irq-versatile-fpga.c
index
ccf5854
..
1ab4517
100644
(file)
--- a/
drivers/irqchip/irq-versatile-fpga.c
+++ b/
drivers/irqchip/irq-versatile-fpga.c
@@
-96,7
+96,7
@@
static int handle_one_fpga(struct fpga_irq_data *f, struct pt_regs *regs)
while ((status = readl(f->base + IRQ_STATUS))) {
irq = ffs(status) - 1;
- handle_
IRQ(irq_find_mapping(f->domain, irq)
, regs);
+ handle_
domain_irq(f->domain, irq
, regs);
handled = 1;
}