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
1 changed files with 1 additions and 1 deletions
|
@ -124,7 +124,7 @@ void platform_send_ipi(cpumask_t callmap, int irq)
|
||||||
unsigned int cpu;
|
unsigned int cpu;
|
||||||
int offset = (irq == IRQ_SUPPLE_0) ? 6 : 8;
|
int offset = (irq == IRQ_SUPPLE_0) ? 6 : 8;
|
||||||
|
|
||||||
for_each_cpu_mask(cpu, callmap) {
|
for_each_cpu(cpu, &callmap) {
|
||||||
BUG_ON(cpu >= 2);
|
BUG_ON(cpu >= 2);
|
||||||
SSYNC();
|
SSYNC();
|
||||||
bfin_write_SICB_SYSCR(bfin_read_SICB_SYSCR() | (1 << (offset + cpu)));
|
bfin_write_SICB_SYSCR(bfin_read_SICB_SYSCR() | (1 << (offset + cpu)));
|
||||||
|
|
Loading…
Add table
Reference in a new issue