diff options
Diffstat (limited to 'arch/mips/kernel/smp.c')
-rw-r--r-- | arch/mips/kernel/smp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/mips/kernel/smp.c b/arch/mips/kernel/smp.c index 6e7862ab46cc..5c208ed8f856 100644 --- a/arch/mips/kernel/smp.c +++ b/arch/mips/kernel/smp.c | |||
@@ -86,7 +86,7 @@ static inline void set_cpu_sibling_map(int cpu) | |||
86 | struct plat_smp_ops *mp_ops; | 86 | struct plat_smp_ops *mp_ops; |
87 | EXPORT_SYMBOL(mp_ops); | 87 | EXPORT_SYMBOL(mp_ops); |
88 | 88 | ||
89 | __cpuinit void register_smp_ops(struct plat_smp_ops *ops) | 89 | void register_smp_ops(struct plat_smp_ops *ops) |
90 | { | 90 | { |
91 | if (mp_ops) | 91 | if (mp_ops) |
92 | printk(KERN_WARNING "Overriding previously set SMP ops\n"); | 92 | printk(KERN_WARNING "Overriding previously set SMP ops\n"); |
@@ -98,7 +98,7 @@ __cpuinit void register_smp_ops(struct plat_smp_ops *ops) | |||
98 | * First C code run on the secondary CPUs after being started up by | 98 | * First C code run on the secondary CPUs after being started up by |
99 | * the master. | 99 | * the master. |
100 | */ | 100 | */ |
101 | asmlinkage __cpuinit void start_secondary(void) | 101 | asmlinkage void start_secondary(void) |
102 | { | 102 | { |
103 | unsigned int cpu; | 103 | unsigned int cpu; |
104 | 104 | ||
@@ -197,7 +197,7 @@ void smp_prepare_boot_cpu(void) | |||
197 | cpu_set(0, cpu_callin_map); | 197 | cpu_set(0, cpu_callin_map); |
198 | } | 198 | } |
199 | 199 | ||
200 | int __cpuinit __cpu_up(unsigned int cpu, struct task_struct *tidle) | 200 | int __cpu_up(unsigned int cpu, struct task_struct *tidle) |
201 | { | 201 | { |
202 | mp_ops->boot_secondary(cpu, tidle); | 202 | mp_ops->boot_secondary(cpu, tidle); |
203 | 203 | ||