Commit 067f3290 authored by David Daney's avatar David Daney Committed by Ralf Baechle

MIPS: Octeon: Fix compile error in arch/mips/cavium-octeon/smp.c

Signed-off-by: default avatarDavid Daney <ddaney@caviumnetworks.com>
Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent d30cecbc
...@@ -65,11 +65,12 @@ void octeon_send_ipi_single(int cpu, unsigned int action) ...@@ -65,11 +65,12 @@ void octeon_send_ipi_single(int cpu, unsigned int action)
cvmx_write_csr(CVMX_CIU_MBOX_SETX(coreid), action); cvmx_write_csr(CVMX_CIU_MBOX_SETX(coreid), action);
} }
static inline void octeon_send_ipi_mask(cpumask_t mask, unsigned int action) static inline void octeon_send_ipi_mask(const struct cpumask *mask,
unsigned int action)
{ {
unsigned int i; unsigned int i;
for_each_cpu_mask(i, mask) for_each_cpu_mask(i, *mask)
octeon_send_ipi_single(i, action); octeon_send_ipi_single(i, action);
} }
......
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