diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2007-08-06 09:02:12 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2007-08-26 21:16:54 -0400 |
commit | 428ab280a0754656fa09304017b0ce626744cc77 (patch) | |
tree | 90b3973d6451701399c66ea252852bb7d34762a9 /arch/mips/mipssim | |
parent | d98cc84dd11c126f85675dab8e2aebcbee114a90 (diff) |
[MIPS] SMP: Scatter __cpuinit over the code as needed.
MIPS doesn't do CPU hotplugging yet but since many of the functions don't
even have an __init let's fix this right.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/mipssim')
-rw-r--r-- | arch/mips/mipssim/sim_smp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/mips/mipssim/sim_smp.c b/arch/mips/mipssim/sim_smp.c index 38fa807b99f9..ccbbccac23ef 100644 --- a/arch/mips/mipssim/sim_smp.c +++ b/arch/mips/mipssim/sim_smp.c | |||
@@ -53,7 +53,7 @@ void core_send_ipi(int cpu, unsigned int action) | |||
53 | * Platform "CPU" startup hook | 53 | * Platform "CPU" startup hook |
54 | */ | 54 | */ |
55 | 55 | ||
56 | void prom_boot_secondary(int cpu, struct task_struct *idle) | 56 | void __cpuinit prom_boot_secondary(int cpu, struct task_struct *idle) |
57 | { | 57 | { |
58 | #ifdef CONFIG_MIPS_MT_SMTC | 58 | #ifdef CONFIG_MIPS_MT_SMTC |
59 | smtc_boot_secondary(cpu, idle); | 59 | smtc_boot_secondary(cpu, idle); |
@@ -64,7 +64,7 @@ void prom_boot_secondary(int cpu, struct task_struct *idle) | |||
64 | * Post-config but pre-boot cleanup entry point | 64 | * Post-config but pre-boot cleanup entry point |
65 | */ | 65 | */ |
66 | 66 | ||
67 | void prom_init_secondary(void) | 67 | void __cpuinit prom_init_secondary(void) |
68 | { | 68 | { |
69 | #ifdef CONFIG_MIPS_MT_SMTC | 69 | #ifdef CONFIG_MIPS_MT_SMTC |
70 | void smtc_init_secondary(void); | 70 | void smtc_init_secondary(void); |
@@ -103,7 +103,7 @@ void plat_prepare_cpus(unsigned int max_cpus) | |||
103 | * SMP initialization finalization entry point | 103 | * SMP initialization finalization entry point |
104 | */ | 104 | */ |
105 | 105 | ||
106 | void prom_smp_finish(void) | 106 | void __cpuinit prom_smp_finish(void) |
107 | { | 107 | { |
108 | #ifdef CONFIG_MIPS_MT_SMTC | 108 | #ifdef CONFIG_MIPS_MT_SMTC |
109 | smtc_smp_finish(); | 109 | smtc_smp_finish(); |