diff mbox

arch/sh: Fix wrong function prototype for native_cpu_disable

Message ID 201004290256.10506.PeterHuewe@gmx.de (mailing list archive)
State Superseded
Headers show

Commit Message

Peter Huewe April 29, 2010, 12:56 a.m. UTC
None
diff mbox

Patch

diff --git a/arch/sh/kernel/smp.c b/arch/sh/kernel/smp.c
index 86cd6f9..509b36b 100644
--- a/arch/sh/kernel/smp.c
+++ b/arch/sh/kernel/smp.c
@@ -161,7 +161,7 @@  int __cpu_disable(void)
 	return 0;
 }
 #else /* ... !CONFIG_HOTPLUG_CPU */
-int native_cpu_disable(void)
+int native_cpu_disable(unsigned int cpu)
 {
 	return -ENOSYS;
 }