diff options
Diffstat (limited to 'arch/alpha/kernel/sys_titan.c')
-rw-r--r-- | arch/alpha/kernel/sys_titan.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/arch/alpha/kernel/sys_titan.c b/arch/alpha/kernel/sys_titan.c index e8e8ec9c0f4e..161d6915dc49 100644 --- a/arch/alpha/kernel/sys_titan.c +++ b/arch/alpha/kernel/sys_titan.c | |||
@@ -243,9 +243,8 @@ titan_legacy_init_irq(void) | |||
243 | } | 243 | } |
244 | 244 | ||
245 | void | 245 | void |
246 | titan_dispatch_irqs(u64 mask, struct pt_regs *regs) | 246 | titan_dispatch_irqs(u64 mask) |
247 | { | 247 | { |
248 | struct pt_regs *old_regs; | ||
249 | unsigned long vector; | 248 | unsigned long vector; |
250 | 249 | ||
251 | /* | 250 | /* |
@@ -253,7 +252,6 @@ titan_dispatch_irqs(u64 mask, struct pt_regs *regs) | |||
253 | */ | 252 | */ |
254 | mask &= titan_cpu_irq_affinity[smp_processor_id()]; | 253 | mask &= titan_cpu_irq_affinity[smp_processor_id()]; |
255 | 254 | ||
256 | old_regs = set_irq_regs(regs); | ||
257 | /* | 255 | /* |
258 | * Dispatch all requested interrupts | 256 | * Dispatch all requested interrupts |
259 | */ | 257 | */ |
@@ -267,7 +265,6 @@ titan_dispatch_irqs(u64 mask, struct pt_regs *regs) | |||
267 | /* dispatch it */ | 265 | /* dispatch it */ |
268 | alpha_mv.device_interrupt(vector); | 266 | alpha_mv.device_interrupt(vector); |
269 | } | 267 | } |
270 | set_irq_regs(old_regs); | ||
271 | } | 268 | } |
272 | 269 | ||
273 | 270 | ||