aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/regulator/devres.c
diff options
context:
space:
mode:
authorBjorn Andersson <bjorn.andersson@sonymobile.com>2015-11-09 22:20:37 -0800
committerMark Brown <broonie@kernel.org>2015-11-17 18:54:07 +0000
commit3ff3f518a135fa4592fe2817e9ac2cce1fa23dc2 (patch)
tree442835eec00be4e89cbca34a48c1c40b0cde629b /drivers/regulator/devres.c
parentLinux 4.4-rc1 (diff)
downloadlinux-dev-3ff3f518a135fa4592fe2817e9ac2cce1fa23dc2.tar.xz
linux-dev-3ff3f518a135fa4592fe2817e9ac2cce1fa23dc2.zip
regulator: Make bulk API support optional supplies
Make it possible to use the bulk API with optional supplies, by allowing the consumer to marking supplies as optional in the regulator_bulk_data. Signed-off-by: Bjorn Andersson <bjorn.andersson@sonymobile.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/regulator/devres.c')
-rw-r--r--drivers/regulator/devres.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/drivers/regulator/devres.c b/drivers/regulator/devres.c
index 6ec1d400adae..6ad8ab4c578d 100644
--- a/drivers/regulator/devres.c
+++ b/drivers/regulator/devres.c
@@ -164,8 +164,11 @@ int devm_regulator_bulk_get(struct device *dev, int num_consumers,
consumers[i].consumer = NULL;
for (i = 0; i < num_consumers; i++) {
- consumers[i].consumer = devm_regulator_get(dev,
- consumers[i].supply);
+ consumers[i].consumer = _devm_regulator_get(dev,
+ consumers[i].supply,
+ consumers[i].optional ?
+ OPTIONAL_GET :
+ NORMAL_GET);
if (IS_ERR(consumers[i].consumer)) {
ret = PTR_ERR(consumers[i].consumer);
dev_err(dev, "Failed to get supply '%s': %d\n",