net: emac: remove unnecessary dev_set_drvdata()
authorWei Yongjun <weiyongjun1@huawei.com>
Thu, 15 Sep 2016 02:25:52 +0000 (02:25 +0000)
committerDavid S. Miller <davem@davemloft.net>
Fri, 16 Sep 2016 08:25:50 +0000 (04:25 -0400)
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 <weiyongjun1@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/qualcomm/emac/emac.c

index 56e0a9f..42d2d23 100644 (file)
@@ -722,7 +722,6 @@ static int emac_remove(struct platform_device *pdev)
 
        mdiobus_unregister(adpt->mii_bus);
        free_netdev(netdev);
-       dev_set_drvdata(&pdev->dev, NULL);
 
        return 0;
 }