Commit bcf3402c authored by Mark Brown's avatar Mark Brown Committed by Liam Girdwood

regulator: Allow init_data to be passed to fixed voltage regulators

Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: default avatarLiam Girdwood <lrg@slimlogic.co.uk>
parent 93c62da2
...@@ -73,7 +73,8 @@ static int regulator_fixed_voltage_probe(struct platform_device *pdev) ...@@ -73,7 +73,8 @@ static int regulator_fixed_voltage_probe(struct platform_device *pdev)
drvdata->microvolts = config->microvolts; drvdata->microvolts = config->microvolts;
drvdata->dev = regulator_register(&drvdata->desc, drvdata); drvdata->dev = regulator_register(&drvdata->desc, &pdev->dev,
config->init_data, drvdata);
if (IS_ERR(drvdata->dev)) { if (IS_ERR(drvdata->dev)) {
ret = PTR_ERR(drvdata->dev); ret = PTR_ERR(drvdata->dev);
goto err_name; goto err_name;
......
...@@ -14,9 +14,12 @@ ...@@ -14,9 +14,12 @@
#ifndef __REGULATOR_FIXED_H #ifndef __REGULATOR_FIXED_H
#define __REGULATOR_FIXED_H #define __REGULATOR_FIXED_H
struct regulator_init_data;
struct fixed_voltage_config { struct fixed_voltage_config {
const char *supply_name; const char *supply_name;
int microvolts; int microvolts;
struct regulator_init_data *init_data;
}; };
#endif #endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment