net: bcmgenet: prevent duplicate calls of bcmgenet_dma_teardown
authorDoug Berger <opendmb@gmail.com>
Wed, 25 Oct 2017 22:04:12 +0000 (15:04 -0700)
committerDavid S. Miller <davem@davemloft.net>
Thu, 26 Oct 2017 01:14:54 +0000 (10:14 +0900)
When bcmgenet_dma_teardown is called from bcmgenet_fini_dma it ends
up getting called twice from the bcmgenet_close and bcmgenet_suspend
functions (once directly and once inside the bcmgenet_fini_dma call).

This commit removes the call from bcmgenet_fini_dma and ensures that
bcmgenet_dma_teardown is called before bcmgenet_fini_dma in all paths
of execution.

Fixes: 4a0c081eff43 ("net: bcmgenet: call bcmgenet_dma_teardown in bcmgenet_fini_dma")
Signed-off-by: Doug Berger <opendmb@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/broadcom/genet/bcmgenet.c

index f6e8e01..7836846 100644 (file)
@@ -2505,9 +2505,6 @@ static void bcmgenet_fini_dma(struct bcmgenet_priv *priv)
        bcmgenet_fini_rx_napi(priv);
        bcmgenet_fini_tx_napi(priv);
 
-       /* disable DMA */
-       bcmgenet_dma_teardown(priv);
-
        for (i = 0; i < priv->num_tx_bds; i++) {
                cb = priv->tx_cbs + i;
                skb = bcmgenet_free_tx_cb(&priv->pdev->dev, cb);
@@ -2930,6 +2927,7 @@ err_irq1:
 err_irq0:
        free_irq(priv->irq0, priv);
 err_fini_dma:
+       bcmgenet_dma_teardown(priv);
        bcmgenet_fini_dma(priv);
 err_clk_disable:
        if (priv->internal_phy)