summaryrefslogtreecommitdiff
path: root/arch/mips/kernel/smp-up.c
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2014-05-27 10:56:23 +0200
committerRalf Baechle <ralf@linux-mips.org>2014-05-27 11:06:42 +0200
commit1461df59f0de0ecdebf9db090164d793e5b94442 (patch)
tree01a5abd7b29e050980b49146cfccce1abe21e7af /arch/mips/kernel/smp-up.c
parent1d530fa42a317deca1c4a4780d18e2dbf316e0cb (diff)
MIPS: SMP: Remove plat_smp_ops cpus_done method.
Nothing was using the method and there isn't any need for this hook. This leaves smp_cpus_done() empty for the moment. As suggested by Paul Bolle <pebolle@tiscali.nl>. Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/kernel/smp-up.c')
-rw-r--r--arch/mips/kernel/smp-up.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/arch/mips/kernel/smp-up.c b/arch/mips/kernel/smp-up.c
index 7fde3e4d978f..17878d71ef2b 100644
--- a/arch/mips/kernel/smp-up.c
+++ b/arch/mips/kernel/smp-up.c
@@ -36,11 +36,6 @@ static void up_smp_finish(void)
{
}
-/* Hook for after all CPUs are online */
-static void up_cpus_done(void)
-{
-}
-
/*
* Firmware CPU startup hook
*/
@@ -73,7 +68,6 @@ struct plat_smp_ops up_smp_ops = {
.send_ipi_mask = up_send_ipi_mask,
.init_secondary = up_init_secondary,
.smp_finish = up_smp_finish,
- .cpus_done = up_cpus_done,
.boot_secondary = up_boot_secondary,
.smp_setup = up_smp_setup,
.prepare_cpus = up_prepare_cpus,