aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/crypto
diff options
context:
space:
mode:
authorRusty Russell <rusty@rustcorp.com.au>2015-03-04 19:19:16 -0500
committerRusty Russell <rusty@rustcorp.com.au>2015-03-04 22:07:02 -0500
commitf9b531fe14a539ec2ad802b73c9638f324e4a4ff (patch)
treeb01a1070d33aef3ac045faca56772bc6432f283e /drivers/crypto
parent51f7bd8590267011db7b632f53f3d32ec83ee8bb (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/crypto')
-rw-r--r--drivers/crypto/n2_core.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/crypto/n2_core.c b/drivers/crypto/n2_core.c
index afd136b45f49..10a9aeff1666 100644
--- a/drivers/crypto/n2_core.c
+++ b/drivers/crypto/n2_core.c
@@ -1754,7 +1754,7 @@ static int spu_mdesc_walk_arcs(struct mdesc_handle *mdesc,
1754 dev->dev.of_node->full_name); 1754 dev->dev.of_node->full_name);
1755 return -EINVAL; 1755 return -EINVAL;
1756 } 1756 }
1757 cpu_set(*id, p->sharing); 1757 cpumask_set_cpu(*id, &p->sharing);
1758 table[*id] = p; 1758 table[*id] = p;
1759 } 1759 }
1760 return 0; 1760 return 0;
@@ -1776,7 +1776,7 @@ static int handle_exec_unit(struct spu_mdesc_info *ip, struct list_head *list,
1776 return -ENOMEM; 1776 return -ENOMEM;
1777 } 1777 }
1778 1778
1779 cpus_clear(p->sharing); 1779 cpumask_clear(&p->sharing);
1780 spin_lock_init(&p->lock); 1780 spin_lock_init(&p->lock);
1781 p->q_type = q_type; 1781 p->q_type = q_type;
1782 INIT_LIST_HEAD(&p->jobs); 1782 INIT_LIST_HEAD(&p->jobs);