projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b0fee1d
)
ARM: imx: avic: Convert to handle_domain_irq
author
Marc Zyngier
<marc.zyngier@arm.com>
Tue, 26 Aug 2014 10:03:37 +0000
(11:03 +0100)
committer
Jason Cooper
<jason@lakedaemon.net>
Wed, 3 Sep 2014 13:10:56 +0000
(13:10 +0000)
Use the new handle_domain_irq method to handle interrupts.
Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
Acked-by: Shawn Guo <shawn.guo@freescale.com>
Link:
https://lkml.kernel.org/r/1409047421-27649-23-git-send-email-marc.zyngier@arm.com
Signed-off-by: Jason Cooper <jason@lakedaemon.net>
arch/arm/mach-imx/avic.c
patch
|
blob
|
blame
|
history
diff --git
a/arch/arm/mach-imx/avic.c
b/arch/arm/mach-imx/avic.c
index 24b103c67f82cae548785b66bf1cd1de7277e0d9..1a8932335b2136b9ff941adc3d2bc35abdebb325 100644
(file)
--- a/
arch/arm/mach-imx/avic.c
+++ b/
arch/arm/mach-imx/avic.c
@@
-144,7
+144,7
@@
static void __exception_irq_entry avic_handle_irq(struct pt_regs *regs)
if (nivector == 0xffff)
break;
- handle_
IRQ(irq_find_mapping(domain, nivector)
, regs);
+ handle_
domain_irq(domain, nivector
, regs);
} while (1);
}