usb: renesas_usbhs: move pdev_to_priv to global

usbhs_pdev_to_priv function will be used in other files.

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
diff --git a/drivers/usb/renesas_usbhs/common.c b/drivers/usb/renesas_usbhs/common.c
index fda586d..53be444 100644
--- a/drivers/usb/renesas_usbhs/common.c
+++ b/drivers/usb/renesas_usbhs/common.c
@@ -56,6 +56,11 @@
 	usbhs_write(priv, reg, val);
 }
 
+struct usbhs_priv *usbhs_pdev_to_priv(struct platform_device *pdev)
+{
+	return dev_get_drvdata(&pdev->dev);
+}
+
 /*
  *		syscfg functions
  */
@@ -113,11 +118,6 @@
 /*
  *		local functions
  */
-static struct usbhs_priv *usbhsc_pdev_to_priv(struct platform_device *pdev)
-{
-	return dev_get_drvdata(&pdev->dev);
-}
-
 static void usbhsc_bus_ctrl(struct usbhs_priv *priv, int enable)
 {
 	int wait = usbhs_get_dparam(priv, buswait_bwait);
@@ -210,7 +210,7 @@
 
 static int usbhsc_drvcllbck_notify_hotplug(struct platform_device *pdev)
 {
-	struct usbhs_priv *priv = usbhsc_pdev_to_priv(pdev);
+	struct usbhs_priv *priv = usbhs_pdev_to_priv(pdev);
 
 	/*
 	 * This functions will be called in interrupt.
@@ -351,7 +351,7 @@
 
 static int __devexit usbhs_remove(struct platform_device *pdev)
 {
-	struct usbhs_priv *priv = usbhsc_pdev_to_priv(pdev);
+	struct usbhs_priv *priv = usbhs_pdev_to_priv(pdev);
 	struct renesas_usbhs_platform_info *info = pdev->dev.platform_data;
 	struct renesas_usbhs_driver_callback *dfunc = &info->driver_callback;