diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2006-10-11 12:24:35 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-11 14:17:06 -0400 |
commit | 12ea59e8109d7192ecb2ac994588e24b11ab0428 (patch) | |
tree | c1e889ea9d8a15d06fbad1ded70ad8de2bb2b050 /arch/m32r/kernel/smp.c | |
parent | 870e75a2930a1db02c7a5c09a13edcb4e3b07838 (diff) |
[PATCH] m32r: NULL noise removal
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/m32r/kernel/smp.c')
-rw-r--r-- | arch/m32r/kernel/smp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/m32r/kernel/smp.c b/arch/m32r/kernel/smp.c index 722e21f556dc..360129174b2b 100644 --- a/arch/m32r/kernel/smp.c +++ b/arch/m32r/kernel/smp.c | |||
@@ -231,7 +231,7 @@ void smp_flush_tlb_all(void) | |||
231 | local_irq_save(flags); | 231 | local_irq_save(flags); |
232 | __flush_tlb_all(); | 232 | __flush_tlb_all(); |
233 | local_irq_restore(flags); | 233 | local_irq_restore(flags); |
234 | smp_call_function(flush_tlb_all_ipi, 0, 1, 1); | 234 | smp_call_function(flush_tlb_all_ipi, NULL, 1, 1); |
235 | preempt_enable(); | 235 | preempt_enable(); |
236 | } | 236 | } |
237 | 237 | ||