diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-05-06 17:22:23 +0530 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2013-05-15 17:23:41 +0300 |
commit | 8fe61203687a67eb1db338a4b7198a8037ca96c8 (patch) | |
tree | c191e4b6f72c319a1aaf26dec0bfc7c638b6a9d4 /drivers/usb | |
parent | 99f80cfc00084a4aa87372095cca7a279db12ce2 (diff) | |
download | linux-8fe61203687a67eb1db338a4b7198a8037ca96c8.tar.bz2 |
usb: phy: nop: Remove redundant platform_set_drvdata()
Commit 0998d06310 (device-core: Ensure drvdata = NULL when no
driver is bound) removes the need to set driver data field to
NULL.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb')
-rw-r--r-- | drivers/usb/phy/phy-nop.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/usb/phy/phy-nop.c b/drivers/usb/phy/phy-nop.c index 2b10cc969bbb..638cc5dade35 100644 --- a/drivers/usb/phy/phy-nop.c +++ b/drivers/usb/phy/phy-nop.c @@ -254,8 +254,6 @@ static int nop_usb_xceiv_remove(struct platform_device *pdev) usb_remove_phy(&nop->phy); - platform_set_drvdata(pdev, NULL); - return 0; } |