diff options
author | Mark Brown <broonie@linaro.org> | 2013-11-24 14:02:47 +0000 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2013-11-24 14:02:47 +0000 |
commit | 7e9e801f746cfc66c0666e6cffa7479eebeab171 (patch) | |
tree | c3966d5b4978a8cecf6ebfb673683563eb640b63 | |
parent | c3fda066ded5513d1ccdbdbb449323c0ec669aa1 (diff) | |
parent | f446043f1aa74c2d699db48ba4a7a075b88dc14d (diff) | |
download | linux-stable-7e9e801f746cfc66c0666e6cffa7479eebeab171.tar.gz linux-stable-7e9e801f746cfc66c0666e6cffa7479eebeab171.tar.bz2 linux-stable-7e9e801f746cfc66c0666e6cffa7479eebeab171.zip |
Merge remote-tracking branch 'regulator/fix/fixed' into regulator-linus
-rw-r--r-- | drivers/regulator/core.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/regulator/core.c b/drivers/regulator/core.c index 6382f0af353b..3fe13130baec 100644 --- a/drivers/regulator/core.c +++ b/drivers/regulator/core.c @@ -2184,6 +2184,9 @@ int regulator_list_voltage(struct regulator *regulator, unsigned selector) struct regulator_ops *ops = rdev->desc->ops; int ret; + if (rdev->desc->fixed_uV && rdev->desc->n_voltages == 1 && !selector) + return rdev->desc->fixed_uV; + if (!ops->list_voltage || selector >= rdev->desc->n_voltages) return -EINVAL; |