diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2012-04-03 19:50:22 -0400 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2012-04-09 07:37:09 -0400 |
commit | c172708d38a401b2f3f841dfcd862b469fa0b670 (patch) | |
tree | 75e89c63fd0c76a2c69bb5ad6e45b3762bceb6b6 /drivers/regulator/rc5t583-regulator.c | |
parent | 1474e4dbcae04125ed6e503eadcef266846f4675 (diff) |
regulator: core: Use a struct to pass in regulator runtime configuration
Rather than adding new arguments to regulator_register() every time we
want to add a new bit of dynamic information at runtime change the function
to take these via a struct. By doing this we avoid needing to do further
changes like the recent addition of device tree support which required each
regulator driver to be updated to take an additional parameter.
The regulator_desc which should (mostly) be static data is still passed
separately as most drivers are able to configure this statically at build
time.
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'drivers/regulator/rc5t583-regulator.c')
-rw-r--r-- | drivers/regulator/rc5t583-regulator.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/drivers/regulator/rc5t583-regulator.c b/drivers/regulator/rc5t583-regulator.c index fe094a6140d9..b567c9ec47c1 100644 --- a/drivers/regulator/rc5t583-regulator.c +++ b/drivers/regulator/rc5t583-regulator.c | |||
@@ -251,6 +251,7 @@ static int __devinit rc5t583_regulator_probe(struct platform_device *pdev) | |||
251 | struct rc5t583 *rc5t583 = dev_get_drvdata(pdev->dev.parent); | 251 | struct rc5t583 *rc5t583 = dev_get_drvdata(pdev->dev.parent); |
252 | struct rc5t583_platform_data *pdata = dev_get_platdata(rc5t583->dev); | 252 | struct rc5t583_platform_data *pdata = dev_get_platdata(rc5t583->dev); |
253 | struct regulator_init_data *reg_data; | 253 | struct regulator_init_data *reg_data; |
254 | struct regulator_config config = { }; | ||
254 | struct rc5t583_regulator *reg = NULL; | 255 | struct rc5t583_regulator *reg = NULL; |
255 | struct rc5t583_regulator *regs; | 256 | struct rc5t583_regulator *regs; |
256 | struct regulator_dev *rdev; | 257 | struct regulator_dev *rdev; |
@@ -300,8 +301,11 @@ static int __devinit rc5t583_regulator_probe(struct platform_device *pdev) | |||
300 | "Failed to configure ext control %d\n", id); | 301 | "Failed to configure ext control %d\n", id); |
301 | 302 | ||
302 | skip_ext_pwr_config: | 303 | skip_ext_pwr_config: |
303 | rdev = regulator_register(&ri->desc, &pdev->dev, | 304 | config.dev = &pdev->dev; |
304 | reg_data, reg, NULL); | 305 | config.init_data = reg_data; |
306 | config.driver_data = reg; | ||
307 | |||
308 | rdev = regulator_register(&ri->desc, &config); | ||
305 | if (IS_ERR(rdev)) { | 309 | if (IS_ERR(rdev)) { |
306 | dev_err(&pdev->dev, "Failed to register regulator %s\n", | 310 | dev_err(&pdev->dev, "Failed to register regulator %s\n", |
307 | ri->desc.name); | 311 | ri->desc.name); |