diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2015-03-04 19:19:16 -0500 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2015-03-04 22:07:02 -0500 |
commit | f9b531fe14a539ec2ad802b73c9638f324e4a4ff (patch) | |
tree | b01a1070d33aef3ac045faca56772bc6432f283e /drivers/irqchip/irq-gic-v3.c | |
parent | 51f7bd8590267011db7b632f53f3d32ec83ee8bb (diff) |
drivers: fix up obsolete cpu function usage.
Thanks to spatch, plus manual removal of "&*". Then a sweep for
for_each_cpu_mask => for_each_cpu.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Acked-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Herbert Xu <herbert@gondor.apana.org.au>
Cc: Jason Cooper <jason@lakedaemon.net>
Cc: Chris Metcalf <cmetcalf@ezchip.com>
Cc: netdev@vger.kernel.org
Diffstat (limited to 'drivers/irqchip/irq-gic-v3.c')
-rw-r--r-- | drivers/irqchip/irq-gic-v3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/irqchip/irq-gic-v3.c b/drivers/irqchip/irq-gic-v3.c index 1c6dea2fbc34..04b6f0732c1a 100644 --- a/drivers/irqchip/irq-gic-v3.c +++ b/drivers/irqchip/irq-gic-v3.c | |||
@@ -512,7 +512,7 @@ static void gic_raise_softirq(const struct cpumask *mask, unsigned int irq) | |||
512 | */ | 512 | */ |
513 | smp_wmb(); | 513 | smp_wmb(); |
514 | 514 | ||
515 | for_each_cpu_mask(cpu, *mask) { | 515 | for_each_cpu(cpu, mask) { |
516 | u64 cluster_id = cpu_logical_map(cpu) & ~0xffUL; | 516 | u64 cluster_id = cpu_logical_map(cpu) & ~0xffUL; |
517 | u16 tlist; | 517 | u16 tlist; |
518 | 518 | ||