linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 3/4] usb: phy-tegra-usb: use platform_{get,set}_drvdata()
@ 2013-08-27  8:10 Libo Chen
  2013-08-27 21:28 ` Stephen Warren
  2013-08-28  4:36 ` Greg KH
  0 siblings, 2 replies; 4+ messages in thread
From: Libo Chen @ 2013-08-27  8:10 UTC (permalink / raw)
  To: balbi, Greg KH, swarren; +Cc: USB, linux-tegra, LKML, Li Zefan


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>
---
 drivers/usb/phy/phy-tegra-usb.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/usb/phy/phy-tegra-usb.c b/drivers/usb/phy/phy-tegra-usb.c
index cec0855..68bc93f 100644
--- a/drivers/usb/phy/phy-tegra-usb.c
+++ b/drivers/usb/phy/phy-tegra-usb.c
@@ -859,7 +859,7 @@ static int tegra_usb_phy_probe(struct platform_device *pdev)
 	tegra_phy->u_phy.shutdown = tegra_usb_phy_close;
 	tegra_phy->u_phy.set_suspend = tegra_usb_phy_suspend;

-	dev_set_drvdata(&pdev->dev, tegra_phy);
+	platform_set_drvdata(pdev, tegra_phy);
 	return 0;
 }

-- 
1.7.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH 3/4] usb: phy-tegra-usb: use platform_{get,set}_drvdata()
  2013-08-27  8:10 [PATCH 3/4] usb: phy-tegra-usb: use platform_{get,set}_drvdata() Libo Chen
@ 2013-08-27 21:28 ` Stephen Warren
  2013-08-28  4:36 ` Greg KH
  1 sibling, 0 replies; 4+ messages in thread
From: Stephen Warren @ 2013-08-27 21:28 UTC (permalink / raw)
  To: Libo Chen; +Cc: balbi, Greg KH, USB, linux-tegra, LKML, Li Zefan

On 08/27/2013 02:10 AM, Libo Chen wrote:
> 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.

Acked-by: Stephen Warren <swarren@nvidia.com>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 3/4] usb: phy-tegra-usb: use platform_{get,set}_drvdata()
  2013-08-27  8:10 [PATCH 3/4] usb: phy-tegra-usb: use platform_{get,set}_drvdata() Libo Chen
  2013-08-27 21:28 ` Stephen Warren
@ 2013-08-28  4:36 ` Greg KH
  2013-08-30  3:23   ` [PATCH RESEND " Libo Chen
  1 sibling, 1 reply; 4+ messages in thread
From: Greg KH @ 2013-08-28  4:36 UTC (permalink / raw)
  To: Libo Chen; +Cc: balbi, swarren, USB, linux-tegra, LKML, Li Zefan

On Tue, Aug 27, 2013 at 04:10:27PM +0800, Libo Chen wrote:
> 
> 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>
> ---
>  drivers/usb/phy/phy-tegra-usb.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)

This patch doesn't apply to my tree :(

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH RESEND 3/4] usb: phy-tegra-usb: use platform_{get,set}_drvdata()
  2013-08-28  4:36 ` Greg KH
@ 2013-08-30  3:23   ` Libo Chen
  0 siblings, 0 replies; 4+ messages in thread
From: Libo Chen @ 2013-08-30  3:23 UTC (permalink / raw)
  To: Greg KH; +Cc: balbi, swarren, USB, linux-tegra, LKML, Li Zefan


Use the wrapper functions for getting and setting the driver data using
platform_device instead of using dev_{get,set}_drvdata() with &of->dev,
so we can directly pass a struct platform_device.

Signed-off-by: Libo Chen <libo.chen@huawei.com>
---
 drivers/usb/phy/phy-tegra-usb.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

rebase on usb-next tree

diff --git a/drivers/usb/phy/phy-tegra-usb.c b/drivers/usb/phy/phy-tegra-usb.c
index 3bfb3d1..e9cb1cb 100644
--- a/drivers/usb/phy/phy-tegra-usb.c
+++ b/drivers/usb/phy/phy-tegra-usb.c
@@ -1064,7 +1064,7 @@ static int tegra_usb_phy_probe(struct platform_device *pdev)
 	tegra_phy->u_phy.shutdown = tegra_usb_phy_close;
 	tegra_phy->u_phy.set_suspend = tegra_usb_phy_suspend;

-	dev_set_drvdata(&pdev->dev, tegra_phy);
+	platform_set_drvdata(pdev, tegra_phy);

 	err = usb_add_phy_dev(&tegra_phy->u_phy);
 	if (err < 0) {
-- 
1.7.1



^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2013-08-30  3:24 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-08-27  8:10 [PATCH 3/4] usb: phy-tegra-usb: use platform_{get,set}_drvdata() Libo Chen
2013-08-27 21:28 ` Stephen Warren
2013-08-28  4:36 ` Greg KH
2013-08-30  3:23   ` [PATCH RESEND " Libo Chen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).