diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2006-10-08 09:45:28 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-08 15:32:36 -0400 |
commit | 2f116cbf369ec3148cef9821f6c7f2b8fb78a071 (patch) | |
tree | 29de6de6fe62e282f4cfdba081e313d9cb27698f /arch/alpha/kernel/sys_titan.c | |
parent | 4fa1970a23bf8fc68e86b65a87c32556e20a6be6 (diff) |
[PATCH] alpha pt_regs cleanups: collapse set_irq_regs() in titan_dispatch_irqs()
titan_dispatch_irqs() always gets get_irq_regs() as argument; kill
the argument and collapse set_irq_regs() in body.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
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 | ||