diff options
author | Yinghai Lu <yinghai@kernel.org> | 2009-04-03 17:15:14 -0700 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-04-08 14:50:28 +0200 |
commit | cdc1cb0d4445f39561a65204d26f89365f917550 (patch) | |
tree | f293237864221e276d3a4b4d27467f52dca34eea /arch/x86/kernel/smpboot.c | |
parent | 577c9c456f0e1371cbade38eaf91ae8e8a308555 (diff) | |
download | talos-op-linux-cdc1cb0d4445f39561a65204d26f89365f917550.tar.gz talos-op-linux-cdc1cb0d4445f39561a65204d26f89365f917550.zip |
x86: make wakeup_secondary_cpu_via_init static
Impact: cleanup
Signed-off-by: Yinghai Lu <yinghai@kernel.org>
LKML-Reference: <49D6A692.6040400@kernel.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/smpboot.c')
-rw-r--r-- | arch/x86/kernel/smpboot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/smpboot.c b/arch/x86/kernel/smpboot.c index 58d24ef917d8..bddf2ccaf325 100644 --- a/arch/x86/kernel/smpboot.c +++ b/arch/x86/kernel/smpboot.c @@ -538,7 +538,7 @@ wakeup_secondary_cpu_via_nmi(int logical_apicid, unsigned long start_eip) return (send_status | accept_status); } -int __devinit +static int __devinit wakeup_secondary_cpu_via_init(int phys_apicid, unsigned long start_eip) { unsigned long send_status, accept_status = 0; |