summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMinghao Chi (CGEL ZTE) <chi.minghao@zte.com.cn>2022-02-10 06:04:11 +0000
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2022-02-15 17:05:43 +0100
commitf89019d43bd1cdbdd3675692be9f1e6eb5be48e8 (patch)
treea4129c085a7e1bbf61ee333d1e071158129a9594
parentb7b3c35e8791ca77dec16f35a6c6a84b5922ecc2 (diff)
downloadlinux-f89019d43bd1cdbdd3675692be9f1e6eb5be48e8.tar.gz
linux-f89019d43bd1cdbdd3675692be9f1e6eb5be48e8.zip
staging/ks7010: Remove redundant 'flush_workqueue()' calls
'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>
-rw-r--r--drivers/staging/ks7010/ks7010_sdio.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/staging/ks7010/ks7010_sdio.c b/drivers/staging/ks7010/ks7010_sdio.c
index 98d759e7cc95..9fb118e77a1f 100644
--- a/drivers/staging/ks7010/ks7010_sdio.c
+++ b/drivers/staging/ks7010/ks7010_sdio.c
@@ -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);