Use the newly introduced ci_hdrc_get_platdata function to help setup the
chipidea internal ci_hdrc_platform_data structure.

Signed-off-by: Antoine Tenart <antoine.ten...@free-electrons.com>
---
 drivers/usb/chipidea/ci_hdrc_msm.c | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/drivers/usb/chipidea/ci_hdrc_msm.c 
b/drivers/usb/chipidea/ci_hdrc_msm.c
index 3edf969ed797..32eeab404911 100644
--- a/drivers/usb/chipidea/ci_hdrc_msm.c
+++ b/drivers/usb/chipidea/ci_hdrc_msm.c
@@ -55,10 +55,15 @@ static struct ci_hdrc_platform_data ci_hdrc_msm_platdata = {
 static int ci_hdrc_msm_probe(struct platform_device *pdev)
 {
        struct platform_device *plat_ci;
+       struct ci_hdrc_platform_data *ci_pdata;
        struct usb_phy *phy;
 
        dev_dbg(&pdev->dev, "ci_hdrc_msm_probe\n");
 
+       ci_pdata = ci_hdrc_get_platdata(&pdev->dev, &ci_hdrc_msm_platdata);
+       if (IS_ERR(ci_pdata))
+               return PTR_ERR(ci_pdata);
+
        /*
         * OTG(PHY) driver takes care of PHY initialization, clock management,
         * powering up VBUS, mapping of registers address space and power
@@ -68,11 +73,10 @@ static int ci_hdrc_msm_probe(struct platform_device *pdev)
        if (IS_ERR(phy))
                return PTR_ERR(phy);
 
-       ci_hdrc_msm_platdata.usb_phy = phy;
+       ci_pdata->usb_phy = phy;
 
        plat_ci = ci_hdrc_add_device(&pdev->dev,
-                               pdev->resource, pdev->num_resources,
-                               &ci_hdrc_msm_platdata);
+                               pdev->resource, pdev->num_resources, ci_pdata);
        if (IS_ERR(plat_ci)) {
                dev_err(&pdev->dev, "ci_hdrc_add_device failed!\n");
                return PTR_ERR(plat_ci);
-- 
2.1.0

--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to