aboutsummaryrefslogtreecommitdiffstats
path: root/arch/mips/sibyte
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2014-05-27 04:56:23 -0400
committerRalf Baechle <ralf@linux-mips.org>2014-05-27 05:06:42 -0400
commit1461df59f0de0ecdebf9db090164d793e5b94442 (patch)
tree01a5abd7b29e050980b49146cfccce1abe21e7af /arch/mips/sibyte
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/sibyte')
-rw-r--r--arch/mips/sibyte/bcm1480/smp.c8
-rw-r--r--arch/mips/sibyte/sb1250/smp.c8
2 files changed, 0 insertions, 16 deletions
diff --git a/arch/mips/sibyte/bcm1480/smp.c b/arch/mips/sibyte/bcm1480/smp.c
index 70d9182b26f1..af7d44edd9a8 100644
--- a/arch/mips/sibyte/bcm1480/smp.c
+++ b/arch/mips/sibyte/bcm1480/smp.c
@@ -115,13 +115,6 @@ static void bcm1480_smp_finish(void)
115} 115}
116 116
117/* 117/*
118 * Final cleanup after all secondaries booted
119 */
120static void bcm1480_cpus_done(void)
121{
122}
123
124/*
125 * Setup the PC, SP, and GP of a secondary processor and start it 118 * Setup the PC, SP, and GP of a secondary processor and start it
126 * running! 119 * running!
127 */ 120 */
@@ -170,7 +163,6 @@ struct plat_smp_ops bcm1480_smp_ops = {
170 .send_ipi_mask = bcm1480_send_ipi_mask, 163 .send_ipi_mask = bcm1480_send_ipi_mask,
171 .init_secondary = bcm1480_init_secondary, 164 .init_secondary = bcm1480_init_secondary,
172 .smp_finish = bcm1480_smp_finish, 165 .smp_finish = bcm1480_smp_finish,
173 .cpus_done = bcm1480_cpus_done,
174 .boot_secondary = bcm1480_boot_secondary, 166 .boot_secondary = bcm1480_boot_secondary,
175 .smp_setup = bcm1480_smp_setup, 167 .smp_setup = bcm1480_smp_setup,
176 .prepare_cpus = bcm1480_prepare_cpus, 168 .prepare_cpus = bcm1480_prepare_cpus,
diff --git a/arch/mips/sibyte/sb1250/smp.c b/arch/mips/sibyte/sb1250/smp.c
index db976117dd4d..c0c4b3f88a08 100644
--- a/arch/mips/sibyte/sb1250/smp.c
+++ b/arch/mips/sibyte/sb1250/smp.c
@@ -103,13 +103,6 @@ static void sb1250_smp_finish(void)
103} 103}
104 104
105/* 105/*
106 * Final cleanup after all secondaries booted
107 */
108static void sb1250_cpus_done(void)
109{
110}
111
112/*
113 * Setup the PC, SP, and GP of a secondary processor and start it 106 * Setup the PC, SP, and GP of a secondary processor and start it
114 * running! 107 * running!
115 */ 108 */
@@ -158,7 +151,6 @@ struct plat_smp_ops sb_smp_ops = {
158 .send_ipi_mask = sb1250_send_ipi_mask, 151 .send_ipi_mask = sb1250_send_ipi_mask,
159 .init_secondary = sb1250_init_secondary, 152 .init_secondary = sb1250_init_secondary,
160 .smp_finish = sb1250_smp_finish, 153 .smp_finish = sb1250_smp_finish,
161 .cpus_done = sb1250_cpus_done,
162 .boot_secondary = sb1250_boot_secondary, 154 .boot_secondary = sb1250_boot_secondary,
163 .smp_setup = sb1250_smp_setup, 155 .smp_setup = sb1250_smp_setup,
164 .prepare_cpus = sb1250_prepare_cpus, 156 .prepare_cpus = sb1250_prepare_cpus,