diff options
author | Libo Chen <clbchenlibo.chen@huawei.com> | 2013-08-27 04:10:31 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-08-28 00:35:23 -0400 |
commit | c9a0552e8df596b7cc43cbcd161c065c0046744d (patch) | |
tree | e56580c96e66651ecf05aa16eb8f4e7cf3101db8 /drivers/usb/renesas_usbhs | |
parent | 3cb40a590e338413814234af9badb0b20ba77875 (diff) |
usb: renesas_usbhs: use platform_{get,set}_drvdata()
Use the wrapper functions for getting and setting the driver data using
platform_device instead of using dev_{get,set}_drvdata() with &pdev->dev,
so we can directly pass a struct platform_device.
Signed-off-by: Libo Chen <libo.chen@huawei.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/renesas_usbhs')
-rw-r--r-- | drivers/usb/renesas_usbhs/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/renesas_usbhs/common.c b/drivers/usb/renesas_usbhs/common.c index 3b39757c13bc..17267b0a2e95 100644 --- a/drivers/usb/renesas_usbhs/common.c +++ b/drivers/usb/renesas_usbhs/common.c | |||
@@ -499,7 +499,7 @@ static int usbhs_probe(struct platform_device *pdev) | |||
499 | goto probe_end_fifo_exit; | 499 | goto probe_end_fifo_exit; |
500 | 500 | ||
501 | /* dev_set_drvdata should be called after usbhs_mod_init */ | 501 | /* dev_set_drvdata should be called after usbhs_mod_init */ |
502 | dev_set_drvdata(&pdev->dev, priv); | 502 | platform_set_drvdata(pdev, priv); |
503 | 503 | ||
504 | /* | 504 | /* |
505 | * deviece reset here because | 505 | * deviece reset here because |