mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-14 05:22:19 -04:00
staging: ks7010: replace create_workqueue with alloc_workqueue
This commit replaces deprecated create_workqueue call with the alloc_workqueue one which is the one to be used now for this purpose. Signed-off-by: Sergio Paracuellos <sergio.paracuellos@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
78c74a5fe1
commit
4487cf88f8
@@ -1041,7 +1041,7 @@ static int ks7010_sdio_probe(struct sdio_func *func,
|
||||
|
||||
priv->dev_state = DEVICE_STATE_BOOT;
|
||||
|
||||
priv->wq = create_workqueue("wq");
|
||||
priv->wq = alloc_workqueue("wq", WQ_MEM_RECLAIM, 1);
|
||||
if (!priv->wq) {
|
||||
netdev_err(priv->net_dev, "create_workqueue failed !!\n");
|
||||
goto err_free_netdev;
|
||||
|
||||
Reference in New Issue
Block a user