aboutsummaryrefslogtreecommitdiffstats
path: root/arch/openrisc/kernel
diff options
context:
space:
mode:
authorMarc Zyngier <marc.zyngier@arm.com>2014-08-26 11:03:41 +0100
committerJason Cooper <jason@lakedaemon.net>2014-09-03 13:11:02 +0000
commit087fe000f086c933f831044cbd0e69b4e140f38c (patch)
tree72e9e7aa8d347185907994a3d7c25f221da22ada /arch/openrisc/kernel
parentarm64: Get rid of handle_IRQ (diff)
downloadlinux-dev-087fe000f086c933f831044cbd0e69b4e140f38c.tar.xz
linux-dev-087fe000f086c933f831044cbd0e69b4e140f38c.zip
openrisc: Get rid of handle_IRQ
The openrisc irqchip driver has been converted to handle_domain_irq, making it possible to remove the handle_IRQ stub entierely. 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-27-git-send-email-marc.zyngier@arm.com Signed-off-by: Jason Cooper <jason@lakedaemon.net>
Diffstat (limited to 'arch/openrisc/kernel')
-rw-r--r--arch/openrisc/kernel/irq.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/arch/openrisc/kernel/irq.c b/arch/openrisc/kernel/irq.c
index e9aaf280b7d9..35e478a93116 100644
--- a/arch/openrisc/kernel/irq.c
+++ b/arch/openrisc/kernel/irq.c
@@ -48,11 +48,6 @@ void __init set_handle_irq(void (*handle_irq)(struct pt_regs *))
handle_arch_irq = handle_irq;
}
-void handle_IRQ(unsigned int irq, struct pt_regs *regs)
-{
- __handle_domain_irq(NULL, irq, false, regs);
-}
-
void __irq_entry do_IRQ(struct pt_regs *regs)
{
handle_arch_irq(regs);