diff options
author | Ingo Molnar <mingo@elte.hu> | 2008-06-27 11:48:22 +0200 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-06-27 11:48:22 +0200 |
commit | 127a237a1ff49fa5b8e00af91e841598aeea3513 (patch) | |
tree | de263be0deab4504037a6ec4ec718ab20c1bdf08 | |
parent | 15c8b6c1aaaf1c4edd67e2f02e4d8e1bd1a51c0d (diff) | |
download | op-kernel-dev-127a237a1ff49fa5b8e00af91e841598aeea3513.zip op-kernel-dev-127a237a1ff49fa5b8e00af91e841598aeea3513.tar.gz |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/process.c b/arch/x86/kernel/process.c index ba370dc..2dad8fef 100644 --- a/arch/x86/kernel/process.c +++ b/arch/x86/kernel/process.c @@ -61,7 +61,7 @@ void cpu_idle_wait(void) { smp_mb(); /* kick all the CPUs so that they exit out of pm_idle */ - smp_call_function(do_nothing, NULL, 0, 1); + smp_call_function(do_nothing, NULL, 1); } EXPORT_SYMBOL_GPL(cpu_idle_wait); |