summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorSrinivas Kandagatla <srinivas.kandagatla@linaro.org>2016-06-02 10:23:15 (GMT)
committerMark Brown <broonie@kernel.org>2016-06-13 08:51:35 (GMT)
commit3bfbb4d1a480cc17f6ccfce13b76eb6c0dbeaf8c (patch)
tree25dc7aa22f5106e83fd237913cfe2e6f8a1b7ea5 /drivers
parentd1e44b6b2823f1751ffe7e7589f545f05cfe2095 (diff)
downloadlinux-3bfbb4d1a480cc17f6ccfce13b76eb6c0dbeaf8c.tar.xz
regulator: qcom_smd: add list_voltage callback
This patch adds support to list_voltage callback, so that consumers like mmc core, can get information of supported voltage range. Without this patch there is no way for mmc core to know this voltage range. Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/regulator/qcom_smd-regulator.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/regulator/qcom_smd-regulator.c b/drivers/regulator/qcom_smd-regulator.c
index 6c7fe477..526bf23 100644
--- a/drivers/regulator/qcom_smd-regulator.c
+++ b/drivers/regulator/qcom_smd-regulator.c
@@ -152,6 +152,7 @@ static const struct regulator_ops rpm_smps_ldo_ops_fixed = {
.enable = rpm_reg_enable,
.disable = rpm_reg_disable,
.is_enabled = rpm_reg_is_enabled,
+ .list_voltage = regulator_list_voltage_linear_range,
.get_voltage = rpm_reg_get_voltage,
.set_voltage = rpm_reg_set_voltage,