dect
/
linux-2.6
Archived
13
0
Fork 0

sh: flag smp_store_cpu_info() __cpuinit.

smp_store_cpu_info() is presently flagged as __init, but is called by
start_secondary() which is __cpuinit, fix it up.

Signed-off-by: Paul Mundt <lethal@linux-sh.org>
This commit is contained in:
Paul Mundt 2010-04-26 18:55:01 +09:00
parent 9715b8c7d5
commit 1cfa1e8f2c
1 changed files with 2 additions and 2 deletions

View File

@ -44,7 +44,7 @@ void __cpuinit register_smp_ops(struct plat_smp_ops *ops)
mp_ops = ops;
}
static inline void __init smp_store_cpu_info(unsigned int cpu)
static inline void __cpuinit smp_store_cpu_info(unsigned int cpu)
{
struct sh_cpuinfo *c = cpu_data + cpu;
@ -66,7 +66,7 @@ void __init smp_prepare_cpus(unsigned int max_cpus)
#endif
}
void __devinit smp_prepare_boot_cpu(void)
void __init smp_prepare_boot_cpu(void)
{
unsigned int cpu = smp_processor_id();