staging/ks7010: Remove redundant 'flush_workqueue()' calls
authorMinghao Chi (CGEL ZTE) <chi.minghao@zte.com.cn>
Thu, 10 Feb 2022 06:04:11 +0000 (06:04 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 15 Feb 2022 16:05:43 +0000 (17:05 +0100)
'destroy_workqueue()' already drains the queue before destroying it,
so there is no need to flush it explicitly.

Remove the redundant 'flush_workqueue()' calls.

Reported-by: Zeal Robot <zealci@zte.com.cn>
Signed-off-by: Minghao Chi (CGEL ZTE) <chi.minghao@zte.com.cn>
Link: https://lore.kernel.org/r/20220210060411.1607928-1-chi.minghao@zte.com.cn
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/ks7010/ks7010_sdio.c

index 98d759e..9fb118e 100644 (file)
@@ -1102,10 +1102,8 @@ static void ks7010_sdio_remove(struct sdio_func *func)
        if (ret)        /* memory allocation failure */
                goto err_free_card;
 
-       if (priv->wq) {
-               flush_workqueue(priv->wq);
+       if (priv->wq)
                destroy_workqueue(priv->wq);
-       }
 
        hostif_exit(priv);