diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2009-01-19 08:37:03 -0500 |
---|---|---|
committer | Liam Girdwood <lrg@slimlogic.co.uk> | 2009-03-31 04:56:21 -0400 |
commit | 93c62da23a717f59933ec799688da42f71d8c6c4 (patch) | |
tree | 7bc6329c6e01bff6a9573b661c3f2378750c3df5 /drivers/regulator/bq24022.c | |
parent | 0527100fd11d9710c7e153d791da78824b7b46fa (diff) |
regulator: Allow init data to be supplied for bq24022
Previously it was not possible to do so, making it impossible for
machines to configure the driver.
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 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/regulator/bq24022.c b/drivers/regulator/bq24022.c index 6804333492eb..7ecb820ceebc 100644 --- a/drivers/regulator/bq24022.c +++ b/drivers/regulator/bq24022.c | |||
@@ -105,7 +105,8 @@ 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, NULL, pdata); | 108 | bq24022 = regulator_register(&bq24022_desc, &pdev->dev, |
109 | pdata->init_data, pdata); | ||
109 | if (IS_ERR(bq24022)) { | 110 | if (IS_ERR(bq24022)) { |
110 | dev_dbg(&pdev->dev, "couldn't register regulator\n"); | 111 | dev_dbg(&pdev->dev, "couldn't register regulator\n"); |
111 | ret = PTR_ERR(bq24022); | 112 | ret = PTR_ERR(bq24022); |