diff options
author | Bjorn Andersson <bjorn.andersson@linaro.org> | 2016-08-16 11:50:32 -0700 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2016-08-16 20:00:44 +0100 |
commit | 565f9b073f37e5cb6f80ad0ad71ec1144f87fd9f (patch) | |
tree | 355a3ab03e0e431305eff4bafdeaea45baa67203 /drivers/regulator/core.c | |
parent | 29b4817d4018df78086157ea3a55c1d9424a7cfc (diff) | |
download | blackbird-obmc-linux-565f9b073f37e5cb6f80ad0ad71ec1144f87fd9f.tar.gz blackbird-obmc-linux-565f9b073f37e5cb6f80ad0ad71ec1144f87fd9f.zip |
regulator: Remove support for optional supplies in the bulk API
The patch was based on my missinterpretation of the API and only
accidentally worked for me. Let's clean it out to not confuse others.
This reverts commit 3ff3f518a135fa4592fe2817e9ac2cce1fa23dc2.
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/regulator/core.c')
-rw-r--r-- | drivers/regulator/core.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/regulator/core.c b/drivers/regulator/core.c index db320e8fa865..8ccdaf89b1c3 100644 --- a/drivers/regulator/core.c +++ b/drivers/regulator/core.c @@ -3483,10 +3483,8 @@ int regulator_bulk_get(struct device *dev, int num_consumers, consumers[i].consumer = NULL; for (i = 0; i < num_consumers; i++) { - consumers[i].consumer = _regulator_get(dev, - consumers[i].supply, - false, - !consumers[i].optional); + consumers[i].consumer = regulator_get(dev, + consumers[i].supply); if (IS_ERR(consumers[i].consumer)) { ret = PTR_ERR(consumers[i].consumer); dev_err(dev, "Failed to get supply '%s': %d\n", |