mirror of https://gitee.com/openkylin/linux.git
blackfin: fix up obsolete cpu function usage.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> Cc: Steven Miao <realmz6@gmail.com> Cc: adi-buildroot-devel@lists.sourceforge.net
This commit is contained in:
parent
409e56f3ef
commit
35168f512f
|
@ -124,7 +124,7 @@ void platform_send_ipi(cpumask_t callmap, int irq)
|
|||
unsigned int cpu;
|
||||
int offset = (irq == IRQ_SUPPLE_0) ? 6 : 8;
|
||||
|
||||
for_each_cpu_mask(cpu, callmap) {
|
||||
for_each_cpu(cpu, &callmap) {
|
||||
BUG_ON(cpu >= 2);
|
||||
SSYNC();
|
||||
bfin_write_SICB_SYSCR(bfin_read_SICB_SYSCR() | (1 << (offset + cpu)));
|
||||
|
|
Loading…
Reference in New Issue