diff options
author | Diogo Ivo <diogo.ivo@siemens.com> | 2024-02-15 15:22:01 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2024-02-16 11:53:49 +0000 |
commit | 1d085e9ce384c2014b967b0ddefd4ce7220dd445 (patch) | |
tree | fda4adb0e506bb5f2f032402830cd496f1e2bab2 /drivers/net/ethernet | |
parent | 21bd52ea38a873b9dce2da86e9d63a95cdbe1275 (diff) | |
download | linux-1d085e9ce384c2014b967b0ddefd4ce7220dd445.tar.gz linux-1d085e9ce384c2014b967b0ddefd4ce7220dd445.tar.bz2 linux-1d085e9ce384c2014b967b0ddefd4ce7220dd445.zip |
net: ti: icssg-prueth: Remove duplicate cleanup calls in emac_ndo_stop()
Remove the duplicate calls to prueth_emac_stop() and
prueth_cleanup_tx_chns() in emac_ndo_stop().
Signed-off-by: Diogo Ivo <diogo.ivo@siemens.com>
Reviewed-by: Roger Quadros <rogerq@kernel.org>
Reviewed-by: MD Danish Anwar <danishanwar@ti.com>
Reviewed-by: Dan Carpenter <dan.carpenter@linaro.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet')
-rw-r--r-- | drivers/net/ethernet/ti/icssg/icssg_prueth.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/net/ethernet/ti/icssg/icssg_prueth.c b/drivers/net/ethernet/ti/icssg/icssg_prueth.c index 411898a4f38c..cf7b73f8f450 100644 --- a/drivers/net/ethernet/ti/icssg/icssg_prueth.c +++ b/drivers/net/ethernet/ti/icssg/icssg_prueth.c @@ -1489,9 +1489,6 @@ static int emac_ndo_stop(struct net_device *ndev) /* Destroying the queued work in ndo_stop() */ cancel_delayed_work_sync(&emac->stats_work); - /* stop PRUs */ - prueth_emac_stop(emac); - if (prueth->emacs_initialized == 1) icss_iep_exit(emac->iep); @@ -1502,7 +1499,6 @@ static int emac_ndo_stop(struct net_device *ndev) free_irq(emac->rx_chns.irq[rx_flow], emac); prueth_ndev_del_tx_napi(emac, emac->tx_ch_num); - prueth_cleanup_tx_chns(emac); prueth_cleanup_rx_chns(emac, &emac->rx_chns, max_rx_flows); prueth_cleanup_tx_chns(emac); |