Commit 720ce6e4 authored by Jingoo Han's avatar Jingoo Han Committed by Greg Kroah-Hartman

USB: c67x00: use dev_get_platdata()

Use the wrapper function for retrieving the platform data instead of
accessing dev->platform_data directly.
Signed-off-by: default avatarJingoo Han <jg1.han@samsung.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 1fa0b42e
...@@ -131,7 +131,7 @@ static int c67x00_drv_probe(struct platform_device *pdev) ...@@ -131,7 +131,7 @@ static int c67x00_drv_probe(struct platform_device *pdev)
if (!res2) if (!res2)
return -ENODEV; return -ENODEV;
pdata = pdev->dev.platform_data; pdata = dev_get_platdata(&pdev->dev);
if (!pdata) if (!pdata)
return -ENODEV; return -ENODEV;
...@@ -154,7 +154,7 @@ static int c67x00_drv_probe(struct platform_device *pdev) ...@@ -154,7 +154,7 @@ static int c67x00_drv_probe(struct platform_device *pdev)
spin_lock_init(&c67x00->hpi.lock); spin_lock_init(&c67x00->hpi.lock);
c67x00->hpi.regstep = pdata->hpi_regstep; c67x00->hpi.regstep = pdata->hpi_regstep;
c67x00->pdata = pdev->dev.platform_data; c67x00->pdata = dev_get_platdata(&pdev->dev);
c67x00->pdev = pdev; c67x00->pdev = pdev;
c67x00_ll_init(c67x00); c67x00_ll_init(c67x00);
......
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