aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/smp_64.c
diff options
context:
space:
mode:
authorGlauber Costa <gcosta@redhat.com>2008-03-03 12:12:36 -0500
committerIngo Molnar <mingo@elte.hu>2008-04-17 11:40:53 -0400
commit71d195492a6e0b22135a7156af1b41c0f99a116b (patch)
tree8c6606c1dcdf6b225c90ece08fe44b60f85bc52c /arch/x86/kernel/smp_64.c
parent64b1a21e0924dca7ea3b7cf4287fa719c8ba7fc5 (diff)
x86: unify __cpu_up.
function definition is moved to common header. x86_64 version is now called native_cpu_up Signed-off-by: Glauber Costa <gcosta@redhat.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/smp_64.c')
-rw-r--r--arch/x86/kernel/smp_64.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/kernel/smp_64.c b/arch/x86/kernel/smp_64.c
index 225b765db5a2..7cc20a3c6c19 100644
--- a/arch/x86/kernel/smp_64.c
+++ b/arch/x86/kernel/smp_64.c
@@ -532,5 +532,6 @@ asmlinkage void smp_call_function_interrupt(void)
532struct smp_ops smp_ops = { 532struct smp_ops smp_ops = {
533 .smp_send_reschedule = native_smp_send_reschedule, 533 .smp_send_reschedule = native_smp_send_reschedule,
534 .smp_call_function_mask = native_smp_call_function_mask, 534 .smp_call_function_mask = native_smp_call_function_mask,
535 .cpu_up = native_cpu_up,
535}; 536};
536EXPORT_SYMBOL_GPL(smp_ops); 537EXPORT_SYMBOL_GPL(smp_ops);