diff options
author | Jingoo Han <jg1.han@samsung.com> | 2013-07-30 12:20:47 +0400 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2013-07-30 15:24:20 +0400 |
commit | dff91d0b721bf8f036c1071a8f16a7effaa87514 (patch) | |
tree | 5331cba036ce2e30372603ae9fe51835d48a6ec0 /drivers/regulator/wm8994-regulator.c | |
parent | 6625d9d297f28741d42a4ba712338a05f7464bd6 (diff) | |
download | linux-dff91d0b721bf8f036c1071a8f16a7effaa87514.tar.xz |
regulator: 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: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'drivers/regulator/wm8994-regulator.c')
-rw-r--r-- | drivers/regulator/wm8994-regulator.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/regulator/wm8994-regulator.c b/drivers/regulator/wm8994-regulator.c index 8f2a8a7a3f99..5ee2a208457c 100644 --- a/drivers/regulator/wm8994-regulator.c +++ b/drivers/regulator/wm8994-regulator.c @@ -125,7 +125,7 @@ static const struct regulator_init_data wm8994_ldo_default[] = { static int wm8994_ldo_probe(struct platform_device *pdev) { struct wm8994 *wm8994 = dev_get_drvdata(pdev->dev.parent); - struct wm8994_pdata *pdata = wm8994->dev->platform_data; + struct wm8994_pdata *pdata = dev_get_platdata(wm8994->dev); int id = pdev->id % ARRAY_SIZE(pdata->ldo); struct regulator_config config = { }; struct wm8994_ldo *ldo; |