Commit 722ace9d authored by Ralf Baechle's avatar Ralf Baechle

[MIPS] Fix declaration of smp_prepare_cpus() platform hook.

    
A while ago prom_prepare_cpus was replaced by plat_prepare_cpus but
the declaration has stayed unchanged.
Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent 1acf1ca7
...@@ -85,9 +85,9 @@ extern void prom_init_secondary(void); ...@@ -85,9 +85,9 @@ extern void prom_init_secondary(void);
extern void plat_smp_setup(void); extern void plat_smp_setup(void);
/* /*
* Called after init_IRQ but before __cpu_up. * Called in smp_prepare_cpus.
*/ */
extern void prom_prepare_cpus(unsigned int max_cpus); extern void plat_prepare_cpus(unsigned int max_cpus);
/* /*
* Last chance for the board code to finish SMP initialization before * Last chance for the board code to finish SMP initialization before
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment