diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2009-01-19 08:37:02 -0500 |
---|---|---|
committer | Liam Girdwood <lrg@slimlogic.co.uk> | 2009-03-31 04:56:21 -0400 |
commit | 0527100fd11d9710c7e153d791da78824b7b46fa (patch) | |
tree | 358bad2e27b71ceb705365dd8fb4537e07e02cbf /drivers/regulator/bq24022.c | |
parent | b136fb4463d13eea129bf090a8a465bba6bf0003 (diff) |
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/bq24022.c')
-rw-r--r-- | drivers/regulator/bq24022.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/regulator/bq24022.c b/drivers/regulator/bq24022.c index c175e38a4cd5..6804333492eb 100644 --- a/drivers/regulator/bq24022.c +++ b/drivers/regulator/bq24022.c | |||
@@ -105,7 +105,7 @@ static int __init bq24022_probe(struct platform_device *pdev) | |||
105 | ret = gpio_direction_output(pdata->gpio_iset2, 0); | 105 | ret = gpio_direction_output(pdata->gpio_iset2, 0); |
106 | ret = gpio_direction_output(pdata->gpio_nce, 1); | 106 | ret = gpio_direction_output(pdata->gpio_nce, 1); |
107 | 107 | ||
108 | bq24022 = regulator_register(&bq24022_desc, &pdev->dev, pdata); | 108 | bq24022 = regulator_register(&bq24022_desc, &pdev->dev, NULL, pdata); |
109 | if (IS_ERR(bq24022)) { | 109 | if (IS_ERR(bq24022)) { |
110 | dev_dbg(&pdev->dev, "couldn't register regulator\n"); | 110 | dev_dbg(&pdev->dev, "couldn't register regulator\n"); |
111 | ret = PTR_ERR(bq24022); | 111 | ret = PTR_ERR(bq24022); |