From: Christophe JAILLET Date: Thu, 14 Oct 2021 18:26:14 +0000 (+0200) Subject: ieee802154: Remove redundant 'flush_workqueue()' calls X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=07fab5a469a5e01f8ca48c8459003d16c5c26f35;p=linux.git ieee802154: 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 Signed-off-by: Stefan Schmidt Signed-off-by: David S. Miller --- diff --git a/drivers/net/ieee802154/ca8210.c b/drivers/net/ieee802154/ca8210.c index 3a2824f24caa8..ece6ff6049f66 100644 --- a/drivers/net/ieee802154/ca8210.c +++ b/drivers/net/ieee802154/ca8210.c @@ -2938,9 +2938,7 @@ static int ca8210_dev_com_init(struct ca8210_priv *priv) */ static void ca8210_dev_com_clear(struct ca8210_priv *priv) { - flush_workqueue(priv->mlme_workqueue); destroy_workqueue(priv->mlme_workqueue); - flush_workqueue(priv->irq_workqueue); destroy_workqueue(priv->irq_workqueue); }