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:
Родитель
9715b8c7d5
Коммит
1cfa1e8f2c
|
@ -44,7 +44,7 @@ void __cpuinit register_smp_ops(struct plat_smp_ops *ops)
|
||||||
mp_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;
|
struct sh_cpuinfo *c = cpu_data + cpu;
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ void __init smp_prepare_cpus(unsigned int max_cpus)
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
void __devinit smp_prepare_boot_cpu(void)
|
void __init smp_prepare_boot_cpu(void)
|
||||||
{
|
{
|
||||||
unsigned int cpu = smp_processor_id();
|
unsigned int cpu = smp_processor_id();
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче