diff options
Diffstat (limited to 'arch/alpha/kernel/irq.c')
-rw-r--r-- | arch/alpha/kernel/irq.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/alpha/kernel/irq.c b/arch/alpha/kernel/irq.c index 729c475d2269..facf82a5499a 100644 --- a/arch/alpha/kernel/irq.c +++ b/arch/alpha/kernel/irq.c | |||
@@ -127,7 +127,7 @@ unlock: | |||
127 | #define MAX_ILLEGAL_IRQS 16 | 127 | #define MAX_ILLEGAL_IRQS 16 |
128 | 128 | ||
129 | void | 129 | void |
130 | handle_irq(int irq, struct pt_regs * regs) | 130 | handle_irq(int irq) |
131 | { | 131 | { |
132 | /* | 132 | /* |
133 | * We ack quickly, we don't want the irq controller | 133 | * We ack quickly, we don't want the irq controller |
@@ -157,6 +157,6 @@ handle_irq(int irq, struct pt_regs * regs) | |||
157 | * at IPL 0. | 157 | * at IPL 0. |
158 | */ | 158 | */ |
159 | local_irq_disable(); | 159 | local_irq_disable(); |
160 | __do_IRQ(irq, regs); | 160 | __do_IRQ(irq); |
161 | irq_exit(); | 161 | irq_exit(); |
162 | } | 162 | } |