diff options
author | Javier Martinez Canillas <javier.martinez@collabora.co.uk> | 2014-11-10 08:43:53 -0500 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2014-11-26 13:58:14 -0500 |
commit | 072e78b12bf5182a3e2e460388214a291023ef1c (patch) | |
tree | dea7a9970709db752d8b998adcc5615e844ddb87 /drivers/regulator/ti-abb-regulator.c | |
parent | 87e1e0f29f703e91c54e81f05d831432ec659dde (diff) |
regulator: of: Add regulator desc param to of_get_regulator_init_data()
The of_get_regulator_init_data() function is used to extract the regulator
init_data but information on how to extract certain data is defined in the
static regulator descriptor (e.g: how to map the hardware operating modes).
Add a const struct regulator_desc * parameter to the function signature so
the parsing logic could use the information in the struct regulator_desc.
of_get_regulator_init_data() relies on of_get_regulation_constraints() to
actually extract the init_data so it has to pass the struct regulator_desc
but that is modified on a later patch.
Signed-off-by: Javier Martinez Canillas <javier.martinez@collabora.co.uk>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/regulator/ti-abb-regulator.c')
-rw-r--r-- | drivers/regulator/ti-abb-regulator.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/regulator/ti-abb-regulator.c b/drivers/regulator/ti-abb-regulator.c index a2dabb575b97..1ef5aba96f17 100644 --- a/drivers/regulator/ti-abb-regulator.c +++ b/drivers/regulator/ti-abb-regulator.c | |||
@@ -837,7 +837,8 @@ skip_opt: | |||
837 | return -EINVAL; | 837 | return -EINVAL; |
838 | } | 838 | } |
839 | 839 | ||
840 | initdata = of_get_regulator_init_data(dev, pdev->dev.of_node); | 840 | initdata = of_get_regulator_init_data(dev, pdev->dev.of_node, |
841 | &abb->rdesc); | ||
841 | if (!initdata) { | 842 | if (!initdata) { |
842 | dev_err(dev, "%s: Unable to alloc regulator init data\n", | 843 | dev_err(dev, "%s: Unable to alloc regulator init data\n", |
843 | __func__); | 844 | __func__); |