diff options
author | Adrian Bunk <[email protected]> | 2008-04-22 01:50:26 +0300 |
---|---|---|
committer | Ingo Molnar <[email protected]> | 2008-05-04 20:04:45 +0200 |
commit | dbe55f4797712f86691a0ee0b5f508693c7310fe (patch) | |
tree | 5fda561c4aea33531f37049e4047234b4b6ceb83 | |
parent | 4c6214c75a5aca5417156a47cd890b128c5f0637 (diff) |
x86: make start_secondary() static
start_secondary() needlessly became global.
Signed-off-by: Adrian Bunk <[email protected]>
Signed-off-by: Ingo Molnar <[email protected]>
Signed-off-by: Thomas Gleixner <[email protected]>
-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 84241a256dc8..b78e4d47a42b 100644 --- a/arch/x86/kernel/smpboot.c +++ b/arch/x86/kernel/smpboot.c @@ -299,7 +299,7 @@ static void __cpuinit smp_callin(void) /* * Activate a secondary processor. */ -void __cpuinit start_secondary(void *unused) +static void __cpuinit start_secondary(void *unused) { /* * Don't put *anything* before cpu_init(), SMP booting is too |