Commit b533e652 authored by Ralf Baechle's avatar Ralf Baechle

MIPS: SMP: Fix build.

commit 48a048fe
Author: Rusty Russell <rusty@rustcorp.com.au>
Date:   Thu Sep 24 09:34:44 2009 -0600

apparently only passed the "looks good" level of QA ;-)
Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent 96983ffe
...@@ -137,7 +137,7 @@ void arch_send_call_function_ipi_mask(const struct cpumask *mask) ...@@ -137,7 +137,7 @@ void arch_send_call_function_ipi_mask(const struct cpumask *mask)
*/ */
void arch_send_call_function_single_ipi(int cpu) void arch_send_call_function_single_ipi(int cpu)
{ {
mp_ops->send_ipi_mask(cpumask_of_cpu(cpu), SMP_CALL_FUNCTION); mp_ops->send_ipi_mask(&cpumask_of_cpu(cpu), SMP_CALL_FUNCTION);
} }
/* /*
......
...@@ -165,7 +165,7 @@ static void ip27_send_ipi_single(int destid, unsigned int action) ...@@ -165,7 +165,7 @@ static void ip27_send_ipi_single(int destid, unsigned int action)
REMOTE_HUB_SEND_INTR(COMPACT_TO_NASID_NODEID(cpu_to_node(destid)), irq); REMOTE_HUB_SEND_INTR(COMPACT_TO_NASID_NODEID(cpu_to_node(destid)), irq);
} }
static void ip27_send_ipi(const struct cpumask *mask, unsigned int action) static void ip27_send_ipi_mask(const struct cpumask *mask, unsigned int action)
{ {
unsigned int i; unsigned int i;
......
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