diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2009-01-19 13:37:02 +0000 |
---|---|---|
committer | Liam Girdwood <lrg@slimlogic.co.uk> | 2009-03-31 09:56:21 +0100 |
commit | 0527100fd11d9710c7e153d791da78824b7b46fa (patch) | |
tree | 358bad2e27b71ceb705365dd8fb4537e07e02cbf /drivers/regulator/pcf50633-regulator.c | |
parent | b136fb4463d13eea129bf090a8a465bba6bf0003 (diff) | |
download | blackbird-obmc-linux-0527100fd11d9710c7e153d791da78824b7b46fa.tar.gz blackbird-obmc-linux-0527100fd11d9710c7e153d791da78824b7b46fa.zip |
regulator: Pass regulator init data as explict argument when registering
Rather than having the regulator init data read from the platform_data
member of the struct device that is registered for the regulator make
the init data an explict argument passed in when registering. This
allows drivers to use the platform data for their own purposes if they
wish.
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Liam Girdwood <lrg@slimlogic.co.uk>
Diffstat (limited to 'drivers/regulator/pcf50633-regulator.c')
-rw-r--r-- | drivers/regulator/pcf50633-regulator.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/regulator/pcf50633-regulator.c b/drivers/regulator/pcf50633-regulator.c index 4cc85ec6e120..cd761d85c8fd 100644 --- a/drivers/regulator/pcf50633-regulator.c +++ b/drivers/regulator/pcf50633-regulator.c @@ -284,7 +284,8 @@ static int __devinit pcf50633_regulator_probe(struct platform_device *pdev) /* Already set by core driver */ pcf = platform_get_drvdata(pdev); - rdev = regulator_register(®ulators[pdev->id], &pdev->dev, pcf); + rdev = regulator_register(®ulators[pdev->id], &pdev->dev, + pdev->dev.platform_data, pcf); if (IS_ERR(rdev)) return PTR_ERR(rdev); |