Commit 603bba8d authored by Krzysztof Kozlowski's avatar Krzysztof Kozlowski

ARM: s3c: Rename s5p_usb_phy functions

The name s5p_usb_phy_init() suggests it is shared with S5Pv210 platform,
but it is not.  It is specific to S3C64xx, so make it clear in the
name.
Signed-off-by: default avatarKrzysztof Kozlowski <krzk@kernel.org>
parent e966fede
...@@ -73,7 +73,7 @@ static int s3c_usb_otgphy_exit(struct platform_device *pdev) ...@@ -73,7 +73,7 @@ static int s3c_usb_otgphy_exit(struct platform_device *pdev)
return 0; return 0;
} }
int s5p_usb_phy_init(struct platform_device *pdev, int type) int s3c_usb_phy_init(struct platform_device *pdev, int type)
{ {
if (type == USB_PHY_TYPE_DEVICE) if (type == USB_PHY_TYPE_DEVICE)
return s3c_usb_otgphy_init(pdev); return s3c_usb_otgphy_init(pdev);
...@@ -81,7 +81,7 @@ int s5p_usb_phy_init(struct platform_device *pdev, int type) ...@@ -81,7 +81,7 @@ int s5p_usb_phy_init(struct platform_device *pdev, int type)
return -EINVAL; return -EINVAL;
} }
int s5p_usb_phy_exit(struct platform_device *pdev, int type) int s3c_usb_phy_exit(struct platform_device *pdev, int type)
{ {
if (type == USB_PHY_TYPE_DEVICE) if (type == USB_PHY_TYPE_DEVICE)
return s3c_usb_otgphy_exit(pdev); return s3c_usb_otgphy_exit(pdev);
......
...@@ -1010,9 +1010,9 @@ void __init dwc2_hsotg_set_platdata(struct dwc2_hsotg_plat *pd) ...@@ -1010,9 +1010,9 @@ void __init dwc2_hsotg_set_platdata(struct dwc2_hsotg_plat *pd)
npd = s3c_set_platdata(pd, sizeof(*npd), &s3c_device_usb_hsotg); npd = s3c_set_platdata(pd, sizeof(*npd), &s3c_device_usb_hsotg);
if (!npd->phy_init) if (!npd->phy_init)
npd->phy_init = s5p_usb_phy_init; npd->phy_init = s3c_usb_phy_init;
if (!npd->phy_exit) if (!npd->phy_exit)
npd->phy_exit = s5p_usb_phy_exit; npd->phy_exit = s3c_usb_phy_exit;
} }
#endif /* CONFIG_S3C_DEV_USB_HSOTG */ #endif /* CONFIG_S3C_DEV_USB_HSOTG */
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
#ifndef __PLAT_SAMSUNG_USB_PHY_H #ifndef __PLAT_SAMSUNG_USB_PHY_H
#define __PLAT_SAMSUNG_USB_PHY_H __FILE__ #define __PLAT_SAMSUNG_USB_PHY_H __FILE__
extern int s5p_usb_phy_init(struct platform_device *pdev, int type); extern int s3c_usb_phy_init(struct platform_device *pdev, int type);
extern int s5p_usb_phy_exit(struct platform_device *pdev, int type); extern int s3c_usb_phy_exit(struct platform_device *pdev, int type);
#endif /* __PLAT_SAMSUNG_USB_PHY_H */ #endif /* __PLAT_SAMSUNG_USB_PHY_H */
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