net: mediatek: remove unnecessary platform_set_drvdata()
authorWei Yongjun <weiyj.lk@gmail.com>
Mon, 15 Aug 2016 22:51:48 +0000 (22:51 +0000)
committerDavid S. Miller <davem@davemloft.net>
Mon, 15 Aug 2016 23:16:11 +0000 (16:16 -0700)
The driver core clears the driver data to NULL after device_release
or on probe failure. Thus, it is not needed to manually clear the
device driver data to NULL.

Signed-off-by: Wei Yongjun <weiyj.lk@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/mediatek/mtk_eth_soc.c

index 3a4726e..994232e 100644 (file)
@@ -1892,7 +1892,6 @@ static int mtk_remove(struct platform_device *pdev)
        netif_napi_del(&eth->tx_napi);
        netif_napi_del(&eth->rx_napi);
        mtk_cleanup(eth);
-       platform_set_drvdata(pdev, NULL);
 
        return 0;
 }