diff options
author | Jingoo Han <jg1.han@samsung.com> | 2013-07-30 04:25:19 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-07-31 20:28:44 -0400 |
commit | 720ce6e4b1ba83aa1ed526a47d36852ac6a25d7e (patch) | |
tree | 31444bad43019b9359d9345cdd87d0b1b625b2c7 /drivers/usb/c67x00 | |
parent | 1fa0b42e7154d3563c21a5db2d18393f6022b3a6 (diff) |
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: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/c67x00')
-rw-r--r-- | drivers/usb/c67x00/c67x00-drv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/c67x00/c67x00-drv.c b/drivers/usb/c67x00/c67x00-drv.c index fe815ecd557e..8db3380c3329 100644 --- a/drivers/usb/c67x00/c67x00-drv.c +++ b/drivers/usb/c67x00/c67x00-drv.c | |||
@@ -131,7 +131,7 @@ static int c67x00_drv_probe(struct platform_device *pdev) | |||
131 | if (!res2) | 131 | if (!res2) |
132 | return -ENODEV; | 132 | return -ENODEV; |
133 | 133 | ||
134 | pdata = pdev->dev.platform_data; | 134 | pdata = dev_get_platdata(&pdev->dev); |
135 | if (!pdata) | 135 | if (!pdata) |
136 | return -ENODEV; | 136 | return -ENODEV; |
137 | 137 | ||
@@ -154,7 +154,7 @@ static int c67x00_drv_probe(struct platform_device *pdev) | |||
154 | 154 | ||
155 | spin_lock_init(&c67x00->hpi.lock); | 155 | spin_lock_init(&c67x00->hpi.lock); |
156 | c67x00->hpi.regstep = pdata->hpi_regstep; | 156 | c67x00->hpi.regstep = pdata->hpi_regstep; |
157 | c67x00->pdata = pdev->dev.platform_data; | 157 | c67x00->pdata = dev_get_platdata(&pdev->dev); |
158 | c67x00->pdev = pdev; | 158 | c67x00->pdev = pdev; |
159 | 159 | ||
160 | c67x00_ll_init(c67x00); | 160 | c67x00_ll_init(c67x00); |