OSDN Git Service

net: ethernet: ti: netcp_core: no need in netif_napi_del
authorIvan Khoronzhuk <ivan.khoronzhuk@linaro.org>
Thu, 7 Sep 2017 15:32:30 +0000 (18:32 +0300)
committerDavid S. Miller <davem@davemloft.net>
Sat, 9 Sep 2017 03:53:10 +0000 (20:53 -0700)
Don't remove rx_napi specifically just before free_netdev(),
it's supposed to be done in it and is confusing w/o tx_napi deletion.

Signed-off-by: Ivan Khoronzhuk <ivan.khoronzhuk@linaro.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/ti/netcp_core.c

index eb96a69..437d362 100644 (file)
@@ -2145,7 +2145,6 @@ static void netcp_delete_interface(struct netcp_device *netcp_device,
 
        of_node_put(netcp->node_interface);
        unregister_netdev(ndev);
-       netif_napi_del(&netcp->rx_napi);
        free_netdev(ndev);
 }