diff options
Diffstat (limited to 'arch/mn10300/kernel/smp.c')
| -rw-r--r-- | arch/mn10300/kernel/smp.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/mn10300/kernel/smp.c b/arch/mn10300/kernel/smp.c index 95983cd21e7..5d7e152a23b 100644 --- a/arch/mn10300/kernel/smp.c +++ b/arch/mn10300/kernel/smp.c @@ -905,7 +905,7 @@ void __init smp_cpus_done(unsigned int max_cpus)   * Set up the cpu_online_mask, cpu_callout_map and cpu_callin_map of the boot   * processor (CPU 0).   */ -void __devinit smp_prepare_boot_cpu(void) +void smp_prepare_boot_cpu(void)  {  	cpumask_set_cpu(0, &cpu_callout_map);  	cpumask_set_cpu(0, &cpu_callin_map); @@ -930,7 +930,7 @@ void initialize_secondary(void)   * __cpu_up - Set smp_commenced_mask for the nominated CPU   * @cpu: The target CPU.   */ -int __devinit __cpu_up(unsigned int cpu, struct task_struct *tidle) +int __cpu_up(unsigned int cpu, struct task_struct *tidle)  {  	int timeout;  |