Commit 206dcc2c authored by Kuninori Morimoto's avatar Kuninori Morimoto Committed by Greg Kroah-Hartman

usb: renesas_usbhs: move pdev_to_priv to global

usbhs_pdev_to_priv function will be used in other files.
Signed-off-by: default avatarKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent f429ea3f
...@@ -56,6 +56,11 @@ void usbhs_bset(struct usbhs_priv *priv, u32 reg, u16 mask, u16 data) ...@@ -56,6 +56,11 @@ void usbhs_bset(struct usbhs_priv *priv, u32 reg, u16 mask, u16 data)
usbhs_write(priv, reg, val); usbhs_write(priv, reg, val);
} }
struct usbhs_priv *usbhs_pdev_to_priv(struct platform_device *pdev)
{
return dev_get_drvdata(&pdev->dev);
}
/* /*
* syscfg functions * syscfg functions
*/ */
...@@ -113,11 +118,6 @@ int usbhs_frame_get_num(struct usbhs_priv *priv) ...@@ -113,11 +118,6 @@ int usbhs_frame_get_num(struct usbhs_priv *priv)
/* /*
* local functions * 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) static void usbhsc_bus_ctrl(struct usbhs_priv *priv, int enable)
{ {
int wait = usbhs_get_dparam(priv, buswait_bwait); int wait = usbhs_get_dparam(priv, buswait_bwait);
...@@ -210,7 +210,7 @@ static void usbhsc_notify_hotplug(struct work_struct *work) ...@@ -210,7 +210,7 @@ static void usbhsc_notify_hotplug(struct work_struct *work)
static int usbhsc_drvcllbck_notify_hotplug(struct platform_device *pdev) 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. * This functions will be called in interrupt.
...@@ -351,7 +351,7 @@ static int __devinit usbhs_probe(struct platform_device *pdev) ...@@ -351,7 +351,7 @@ static int __devinit usbhs_probe(struct platform_device *pdev)
static int __devexit usbhs_remove(struct platform_device *pdev) 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_platform_info *info = pdev->dev.platform_data;
struct renesas_usbhs_driver_callback *dfunc = &info->driver_callback; struct renesas_usbhs_driver_callback *dfunc = &info->driver_callback;
......
...@@ -217,6 +217,7 @@ int usbhs_frame_get_num(struct usbhs_priv *priv); ...@@ -217,6 +217,7 @@ int usbhs_frame_get_num(struct usbhs_priv *priv);
/* /*
* data * data
*/ */
struct usbhs_priv *usbhs_pdev_to_priv(struct platform_device *pdev);
#define usbhs_get_dparam(priv, param) (priv->dparam->param) #define usbhs_get_dparam(priv, param) (priv->dparam->param)
#define usbhs_priv_to_pdev(priv) (priv->pdev) #define usbhs_priv_to_pdev(priv) (priv->pdev)
#define usbhs_priv_to_dev(priv) (&priv->pdev->dev) #define usbhs_priv_to_dev(priv) (&priv->pdev->dev)
......
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