aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2008-06-27 05:48:22 -0400
committerIngo Molnar <mingo@elte.hu>2008-06-27 05:48:22 -0400
commit127a237a1ff49fa5b8e00af91e841598aeea3513 (patch)
treede263be0deab4504037a6ec4ec718ab20c1bdf08
parent15c8b6c1aaaf1c4edd67e2f02e4d8e1bd1a51c0d (diff)
fix "smp_call_function: get rid of the unused nonatomic/retry argument"
fix: arch/x86/kernel/process.c: In function 'cpu_idle_wait': arch/x86/kernel/process.c:64: error: too many arguments to function 'smp_call_function' Signed-off-by: Ingo Molnar <mingo@elte.hu>
-rw-r--r--arch/x86/kernel/process.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/process.c b/arch/x86/kernel/process.c
index ba370dc8685b..2dad8fef391c 100644
--- a/arch/x86/kernel/process.c
+++ b/arch/x86/kernel/process.c
@@ -61,7 +61,7 @@ void cpu_idle_wait(void)
61{ 61{
62 smp_mb(); 62 smp_mb();
63 /* kick all the CPUs so that they exit out of pm_idle */ 63 /* kick all the CPUs so that they exit out of pm_idle */
64 smp_call_function(do_nothing, NULL, 0, 1); 64 smp_call_function(do_nothing, NULL, 1);
65} 65}
66EXPORT_SYMBOL_GPL(cpu_idle_wait); 66EXPORT_SYMBOL_GPL(cpu_idle_wait);
67 67