diff options
| author | Christophe JAILLET <[email protected]> | 2021-10-10 07:09:11 +0000 |
|---|---|---|
| committer | Kalle Valo <[email protected]> | 2021-10-13 06:22:19 +0000 |
| commit | ff1cc2fa3055ee4c83839f38b74b4ee370a2291c (patch) | |
| tree | 2e73051245cfffe4b84c544f2043ef3df67187f6 /drivers/net/wireless/microchip/wilc1000/netdev.c | |
| parent | mt7601u: Remove redundant initialization of variable ret (diff) | |
| download | kernel-ff1cc2fa3055ee4c83839f38b74b4ee370a2291c.tar.gz kernel-ff1cc2fa3055ee4c83839f38b74b4ee370a2291c.zip | |
wireless: 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.
This was generated with coccinelle:
@@
expression E;
@@
- flush_workqueue(E);
destroy_workqueue(E);
Signed-off-by: Christophe JAILLET <[email protected]>
Signed-off-by: Kalle Valo <[email protected]>
Link: https://lore.kernel.org/r/0855d51423578ad019c0264dad3fe47a2e8af9c7.1633849511.git.christophe.jaillet@wanadoo.fr
Diffstat (limited to 'drivers/net/wireless/microchip/wilc1000/netdev.c')
| -rw-r--r-- | drivers/net/wireless/microchip/wilc1000/netdev.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/net/wireless/microchip/wilc1000/netdev.c b/drivers/net/wireless/microchip/wilc1000/netdev.c index 7e4d9235251c..d3b33c6ab93a 100644 --- a/drivers/net/wireless/microchip/wilc1000/netdev.c +++ b/drivers/net/wireless/microchip/wilc1000/netdev.c @@ -880,7 +880,6 @@ void wilc_netdev_cleanup(struct wilc *wilc) srcu_read_unlock(&wilc->srcu, srcu_idx); wilc_wfi_deinit_mon_interface(wilc, false); - flush_workqueue(wilc->hif_workqueue); destroy_workqueue(wilc->hif_workqueue); while (ifc_cnt < WILC_NUM_CONCURRENT_IFC) { |
