aboutsummaryrefslogtreecommitdiffstats
path: root/arch/alpha/kernel/irq.c
diff options
context:
space:
mode:
authorKyle McMartin <kyle@redhat.com>2010-10-14 22:31:34 -0400
committerMatt Turner <mattst88@monolith.freenet-rz.de>2011-01-16 23:42:13 -0500
commit7d209c8110ecd49db46da786437485e8ef67f414 (patch)
treebc550d6f1a7933a56194390255c5b836e41817a7 /arch/alpha/kernel/irq.c
parenta891b393dd7f6ed84ecee98c0eac4a808ff2cbbc (diff)
alpha: kill off alpha_do_IRQ
Good riddance... Nuke a pile of redundant handlers that the generic code takes care of as well. Tested-by: Michael Cree <mcree@orcon.net.nz> Signed-off-by: Kyle McMartin <kyle@redhat.com> Signed-off-by: Matt Turner <mattst88@gmail.com>
Diffstat (limited to 'arch/alpha/kernel/irq.c')
-rw-r--r--arch/alpha/kernel/irq.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/arch/alpha/kernel/irq.c b/arch/alpha/kernel/irq.c
index cea8913e74be..5912900a42eb 100644
--- a/arch/alpha/kernel/irq.c
+++ b/arch/alpha/kernel/irq.c
@@ -162,7 +162,7 @@ handle_irq(int irq)
162 162
163 irq_enter(); 163 irq_enter();
164 /* 164 /*
165 * __do_IRQ() must be called with IPL_MAX. Note that we do not 165 * handle_irq() must be called with IPL_MAX. Note that we do not
166 * explicitly enable interrupts afterwards - some MILO PALcode 166 * explicitly enable interrupts afterwards - some MILO PALcode
167 * (namely LX164 one) seems to have severe problems with RTI 167 * (namely LX164 one) seems to have severe problems with RTI
168 * at IPL 0. 168 * at IPL 0.
@@ -172,7 +172,3 @@ handle_irq(int irq)
172 irq_exit(); 172 irq_exit();
173} 173}
174 174
175void alpha_do_IRQ(unsigned int irq, struct irq_desc *desc)
176{
177 __do_IRQ(irq);
178}