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 | |
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')
-rw-r--r-- | arch/alpha/kernel/err_titan.c | 4 | ||||
-rw-r--r-- | arch/alpha/kernel/proto.h | 2 | ||||
-rw-r--r-- | arch/alpha/kernel/sys_titan.c | 5 |
3 files changed, 4 insertions, 7 deletions
diff --git a/arch/alpha/kernel/err_titan.c b/arch/alpha/kernel/err_titan.c index 2e6e62933327..febe71c6869f 100644 --- a/arch/alpha/kernel/err_titan.c +++ b/arch/alpha/kernel/err_titan.c | |||
@@ -452,7 +452,7 @@ titan_machine_check(u64 vector, u64 la_ptr) | |||
452 | * machine checks to interrupts | 452 | * machine checks to interrupts |
453 | */ | 453 | */ |
454 | irqmask = tmchk->c_dirx & TITAN_MCHECK_INTERRUPT_MASK; | 454 | irqmask = tmchk->c_dirx & TITAN_MCHECK_INTERRUPT_MASK; |
455 | titan_dispatch_irqs(irqmask, get_irq_regs()); | 455 | titan_dispatch_irqs(irqmask); |
456 | } | 456 | } |
457 | 457 | ||
458 | 458 | ||
@@ -746,7 +746,7 @@ privateer_machine_check(u64 vector, u64 la_ptr) | |||
746 | /* | 746 | /* |
747 | * Dispatch the interrupt(s). | 747 | * Dispatch the interrupt(s). |
748 | */ | 748 | */ |
749 | titan_dispatch_irqs(irqmask, get_irq_regs()); | 749 | titan_dispatch_irqs(irqmask); |
750 | 750 | ||
751 | /* | 751 | /* |
752 | * Release the logout frame. | 752 | * Release the logout frame. |
diff --git a/arch/alpha/kernel/proto.h b/arch/alpha/kernel/proto.h index 3fff88734190..daccd4b6d28a 100644 --- a/arch/alpha/kernel/proto.h +++ b/arch/alpha/kernel/proto.h | |||
@@ -177,7 +177,7 @@ extern void dik_show_regs(struct pt_regs *regs, unsigned long *r9_15); | |||
177 | extern void die_if_kernel(char *, struct pt_regs *, long, unsigned long *); | 177 | extern void die_if_kernel(char *, struct pt_regs *, long, unsigned long *); |
178 | 178 | ||
179 | /* sys_titan.c */ | 179 | /* sys_titan.c */ |
180 | extern void titan_dispatch_irqs(u64, struct pt_regs *); | 180 | extern void titan_dispatch_irqs(u64); |
181 | 181 | ||
182 | /* ../mm/init.c */ | 182 | /* ../mm/init.c */ |
183 | extern void switch_to_system_map(void); | 183 | extern void switch_to_system_map(void); |
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 | ||