summaryrefslogtreecommitdiff
path: root/drivers/usb/renesas_usbhs/rcar2.c
diff options
context:
space:
mode:
authorYoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>2014-10-07 12:43:04 +0900
committerFelipe Balbi <balbi@ti.com>2014-11-03 10:00:56 -0600
commitc042b85a2cbb0c612e9ed3c7ea1af684bba5dcd3 (patch)
tree34ac077e43f18cc30c986437d14f85a5d4afc7ca /drivers/usb/renesas_usbhs/rcar2.c
parentccb072de5702a50270172e8613db186d136fce16 (diff)
usb: renesas_usbhs: rename phy to usb_phy in usbhs_priv
To support a generic phy driver in this driver later, this patch renames "struct usb_phy *phy" to "struct usb_phy *usb_phy". Signed-off-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com> Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/renesas_usbhs/rcar2.c')
-rw-r--r--drivers/usb/renesas_usbhs/rcar2.c26
1 files changed, 13 insertions, 13 deletions
diff --git a/drivers/usb/renesas_usbhs/rcar2.c b/drivers/usb/renesas_usbhs/rcar2.c
index e6b9dcc1c289..f264cadc12cd 100644
--- a/drivers/usb/renesas_usbhs/rcar2.c
+++ b/drivers/usb/renesas_usbhs/rcar2.c
@@ -20,13 +20,13 @@
static int usbhs_rcar2_hardware_init(struct platform_device *pdev)
{
struct usbhs_priv *priv = usbhs_pdev_to_priv(pdev);
- struct usb_phy *phy;
+ struct usb_phy *usb_phy;
- phy = usb_get_phy_dev(&pdev->dev, 0);
- if (IS_ERR(phy))
- return PTR_ERR(phy);
+ usb_phy = usb_get_phy_dev(&pdev->dev, 0);
+ if (IS_ERR(usb_phy))
+ return PTR_ERR(usb_phy);
- priv->phy = phy;
+ priv->usb_phy = usb_phy;
return 0;
}
@@ -34,11 +34,11 @@ static int usbhs_rcar2_hardware_exit(struct platform_device *pdev)
{
struct usbhs_priv *priv = usbhs_pdev_to_priv(pdev);
- if (!priv->phy)
+ if (!priv->usb_phy)
return 0;
- usb_put_phy(priv->phy);
- priv->phy = NULL;
+ usb_put_phy(priv->usb_phy);
+ priv->usb_phy = NULL;
return 0;
}
@@ -48,19 +48,19 @@ static int usbhs_rcar2_power_ctrl(struct platform_device *pdev,
{
struct usbhs_priv *priv = usbhs_pdev_to_priv(pdev);
- if (!priv->phy)
+ if (!priv->usb_phy)
return -ENODEV;
if (enable) {
- int retval = usb_phy_init(priv->phy);
+ int retval = usb_phy_init(priv->usb_phy);
if (!retval)
- retval = usb_phy_set_suspend(priv->phy, 0);
+ retval = usb_phy_set_suspend(priv->usb_phy, 0);
return retval;
}
- usb_phy_set_suspend(priv->phy, 1);
- usb_phy_shutdown(priv->phy);
+ usb_phy_set_suspend(priv->usb_phy, 1);
+ usb_phy_shutdown(priv->usb_phy);
return 0;
}