Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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

parent d30cecbc
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -65,11 +65,12 @@ void octeon_send_ipi_single(int cpu, unsigned int 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;

	for_each_cpu_mask(i, mask)
	for_each_cpu_mask(i, *mask)
		octeon_send_ipi_single(i, action);
}