diff options
author | Jingoo Han <jg1.han@samsung.com> | 2013-05-27 19:08:17 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-05-27 22:34:52 -0700 |
commit | 1010dcceed9d45dc8a07c50ec93e5d0c1ef7cc24 (patch) | |
tree | 3ecb6bf633ce01f9131b6ec8d83c3e039ca9e76f /drivers | |
parent | 785ec305b26ee23e0efb834b5cd0dd24070ba1bf (diff) | |
download | linux-1010dcceed9d45dc8a07c50ec93e5d0c1ef7cc24.tar.bz2 |
net: wan: remove unnecessary platform_set_drvdata()
The driver core clears the driver data to NULL after device_release
or on probe failure, since commit 0998d0631001288a5974afc0b2a5f568bcdecb4d
(device-core: Ensure drvdata = NULL when no driver is bound).
Thus, it is not needed to manually clear the device driver data to NULL.
Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/wan/ixp4xx_hss.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/net/wan/ixp4xx_hss.c b/drivers/net/wan/ixp4xx_hss.c index fc9d11d74d60..e7bbdb7af53a 100644 --- a/drivers/net/wan/ixp4xx_hss.c +++ b/drivers/net/wan/ixp4xx_hss.c @@ -1384,7 +1384,6 @@ static int hss_remove_one(struct platform_device *pdev) unregister_hdlc_device(port->netdev); free_netdev(port->netdev); npe_release(port->npe); - platform_set_drvdata(pdev, NULL); kfree(port); return 0; } |