Skip to content
Snippets Groups Projects
Commit 1ed1835f authored by Rusty Russell's avatar Rusty Russell
Browse files

mips: fix obsolete cpumask_of_cpu usage.


Plus, it's weird.

Signed-off-by: default avatarRusty Russell <rusty@rustcorp.com.au>
parent fdaf3a65
No related branches found
No related tags found
No related merge requests found
......@@ -88,7 +88,7 @@ static inline void arch_send_call_function_single_ipi(int cpu)
{
extern struct plat_smp_ops *mp_ops; /* private */
mp_ops->send_ipi_mask(&cpumask_of_cpu(cpu), SMP_CALL_FUNCTION);
mp_ops->send_ipi_mask(cpumask_of(cpu), SMP_CALL_FUNCTION);
}
static inline void arch_send_call_function_ipi_mask(const struct cpumask *mask)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment