diff options
-rw-r--r-- | arch/arc/kernel/smp.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/arch/arc/kernel/smp.c b/arch/arc/kernel/smp.c index 41bc4c703f42..c2f9ebbc38f6 100644 --- a/arch/arc/kernel/smp.c +++ b/arch/arc/kernel/smp.c | |||
@@ -211,7 +211,6 @@ enum ipi_msg_type { | |||
211 | IPI_NOP = 0, | 211 | IPI_NOP = 0, |
212 | IPI_RESCHEDULE = 1, | 212 | IPI_RESCHEDULE = 1, |
213 | IPI_CALL_FUNC, | 213 | IPI_CALL_FUNC, |
214 | IPI_CALL_FUNC_SINGLE, | ||
215 | IPI_CPU_STOP | 214 | IPI_CPU_STOP |
216 | }; | 215 | }; |
217 | 216 | ||
@@ -255,7 +254,7 @@ void smp_send_stop(void) | |||
255 | 254 | ||
256 | void arch_send_call_function_single_ipi(int cpu) | 255 | void arch_send_call_function_single_ipi(int cpu) |
257 | { | 256 | { |
258 | ipi_send_msg(cpumask_of(cpu), IPI_CALL_FUNC_SINGLE); | 257 | ipi_send_msg(cpumask_of(cpu), IPI_CALL_FUNC); |
259 | } | 258 | } |
260 | 259 | ||
261 | void arch_send_call_function_ipi_mask(const struct cpumask *mask) | 260 | void arch_send_call_function_ipi_mask(const struct cpumask *mask) |
@@ -287,10 +286,6 @@ static inline void __do_IPI(unsigned long *ops, struct ipi_data *ipi, int cpu) | |||
287 | generic_smp_call_function_interrupt(); | 286 | generic_smp_call_function_interrupt(); |
288 | break; | 287 | break; |
289 | 288 | ||
290 | case IPI_CALL_FUNC_SINGLE: | ||
291 | generic_smp_call_function_single_interrupt(); | ||
292 | break; | ||
293 | |||
294 | case IPI_CPU_STOP: | 289 | case IPI_CPU_STOP: |
295 | ipi_cpu_stop(cpu); | 290 | ipi_cpu_stop(cpu); |
296 | break; | 291 | break; |