diff options
author | Mark Brown <broonie@linaro.org> | 2013-09-20 15:23:30 +0400 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2013-09-20 20:38:44 +0400 |
commit | 9b92da1f1205bd2591487051a93624dd6c258eef (patch) | |
tree | 467b882973ed4ad12cbdbb89f7f17a47dc9612c0 /drivers/regulator/core.c | |
parent | 4f0ac6dabf867095b31f851ba0d0ceaca2f87e2e (diff) | |
download | linux-9b92da1f1205bd2591487051a93624dd6c258eef.tar.xz |
regulator: core: Fix default return value for _get()
Now that we are defaulting to providing dummy regulators fix the logic
for substituting a dummy by making the default return code -EPROBE_DEFER.
Reported-by: Thierry Reding <treding@nvidia.com>
Tested-by: Thierry Reding <treding@nvidia.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'drivers/regulator/core.c')
-rw-r--r-- | drivers/regulator/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/regulator/core.c b/drivers/regulator/core.c index ac3a864d3635..088b41ac9506 100644 --- a/drivers/regulator/core.c +++ b/drivers/regulator/core.c @@ -1247,7 +1247,7 @@ static struct regulator *_regulator_get(struct device *dev, const char *id, struct regulator_dev *rdev; struct regulator *regulator = ERR_PTR(-EPROBE_DEFER); const char *devname = NULL; - int ret = 0; + int ret = -EPROBE_DEFER; if (id == NULL) { pr_err("get() with no identifier\n"); |