diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2015-03-10 13:00:43 +1030 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2015-03-10 13:54:40 +1030 |
commit | 1ed1835f5fadf057ab081cbe31ac353d4547a25b (patch) | |
tree | 92ab7d1017fb3befd30a4f0ed6accfd222025f5f /arch/mips/include | |
parent | fdaf3a6539d6b9b6a7240c3b00bd81c813b2760d (diff) | |
download | op-kernel-dev-1ed1835f5fadf057ab081cbe31ac353d4547a25b.zip op-kernel-dev-1ed1835f5fadf057ab081cbe31ac353d4547a25b.tar.gz |
mips: fix obsolete cpumask_of_cpu usage.
Plus, it's weird.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'arch/mips/include')
-rw-r--r-- | arch/mips/include/asm/smp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/include/asm/smp.h b/arch/mips/include/asm/smp.h index eacf865..bb02fac 100644 --- a/arch/mips/include/asm/smp.h +++ b/arch/mips/include/asm/smp.h @@ -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) |