diff options
author | Libo Chen <clbchenlibo.chen@huawei.com> | 2013-08-27 11:08:11 +0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-08-27 21:36:46 -0700 |
commit | d143a8edcd4e84498e419a33a2af56b3e3a17b9a (patch) | |
tree | abc3baa49b71d46d36e618c00115d8c178cd0f13 /drivers/usb | |
parent | c9a0552e8df596b7cc43cbcd161c065c0046744d (diff) | |
download | blackbird-op-linux-d143a8edcd4e84498e419a33a2af56b3e3a17b9a.tar.gz blackbird-op-linux-d143a8edcd4e84498e419a33a2af56b3e3a17b9a.zip |
usb: ohci-at91: remove unnecessary dev_set_drvdata()
Unnecessary dev_set_drvdata() is removed, because the driver core
clears the driver data to NULL after device_release or on probe failure.
Signed-off-by: Libo Chen <libo.chen@huawei.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb')
-rw-r--r-- | drivers/usb/host/ohci-at91.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/usb/host/ohci-at91.c b/drivers/usb/host/ohci-at91.c index b3cdd1467521..caa3764a3407 100644 --- a/drivers/usb/host/ohci-at91.c +++ b/drivers/usb/host/ohci-at91.c @@ -235,8 +235,6 @@ static void usb_hcd_at91_remove(struct usb_hcd *hcd, clk_put(fclk); clk_put(iclk); fclk = iclk = hclk = NULL; - - dev_set_drvdata(&pdev->dev, NULL); } /*-------------------------------------------------------------------------*/ |