Commit 64f5b56c authored by Wolfram Sang's avatar Wolfram Sang Committed by Felipe Balbi

usb: phy: simplify getting .drvdata

We should get drvdata from struct device directly. Going via
platform_device is an unneeded step back and forth.
Signed-off-by: default avatarWolfram Sang <wsa+renesas@sang-engineering.com>
Signed-off-by: default avatarFelipe Balbi <felipe.balbi@linux.intel.com>
parent 8836b39a
...@@ -96,8 +96,7 @@ static int am335x_phy_remove(struct platform_device *pdev) ...@@ -96,8 +96,7 @@ static int am335x_phy_remove(struct platform_device *pdev)
#ifdef CONFIG_PM_SLEEP #ifdef CONFIG_PM_SLEEP
static int am335x_phy_suspend(struct device *dev) static int am335x_phy_suspend(struct device *dev)
{ {
struct platform_device *pdev = to_platform_device(dev); struct am335x_phy *am_phy = dev_get_drvdata(dev);
struct am335x_phy *am_phy = platform_get_drvdata(pdev);
/* /*
* Enable phy wakeup only if dev->power.can_wakeup is true. * Enable phy wakeup only if dev->power.can_wakeup is true.
...@@ -117,8 +116,7 @@ static int am335x_phy_suspend(struct device *dev) ...@@ -117,8 +116,7 @@ static int am335x_phy_suspend(struct device *dev)
static int am335x_phy_resume(struct device *dev) static int am335x_phy_resume(struct device *dev)
{ {
struct platform_device *pdev = to_platform_device(dev); struct am335x_phy *am_phy = dev_get_drvdata(dev);
struct am335x_phy *am_phy = platform_get_drvdata(pdev);
phy_ctrl_power(am_phy->phy_ctrl, am_phy->id, am_phy->dr_mode, true); phy_ctrl_power(am_phy->phy_ctrl, am_phy->id, am_phy->dr_mode, true);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment