aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/regulator
diff options
context:
space:
mode:
authorMark Brown <broonie@linaro.org>2013-07-01 11:17:08 +0100
committerMark Brown <broonie@linaro.org>2013-07-01 11:17:08 +0100
commit0a192cc8600bede44a0425402758631d410a7c6f (patch)
tree7aeb844ebe2002ba6e05482f674e0c989be9061e /drivers/regulator
parentMerge remote-tracking branch 'regulator/topic/isl6271a' into regulator-next (diff)
parentregulator: core: add regulator_get_linear_step() (diff)
downloadlinux-dev-0a192cc8600bede44a0425402758631d410a7c6f.tar.xz
linux-dev-0a192cc8600bede44a0425402758631d410a7c6f.zip
Merge remote-tracking branch 'regulator/topic/linar' into regulator-next
Diffstat (limited to 'drivers/regulator')
-rw-r--r--drivers/regulator/core.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/drivers/regulator/core.c b/drivers/regulator/core.c
index 815d6df8bd5f..288c75abc190 100644
--- a/drivers/regulator/core.c
+++ b/drivers/regulator/core.c
@@ -2138,6 +2138,21 @@ int regulator_list_voltage(struct regulator *regulator, unsigned selector)
EXPORT_SYMBOL_GPL(regulator_list_voltage);
/**
+ * regulator_get_linear_step - return the voltage step size between VSEL values
+ * @regulator: regulator source
+ *
+ * Returns the voltage step size between VSEL values for linear
+ * regulators, or return 0 if the regulator isn't a linear regulator.
+ */
+unsigned int regulator_get_linear_step(struct regulator *regulator)
+{
+ struct regulator_dev *rdev = regulator->rdev;
+
+ return rdev->desc->uV_step;
+}
+EXPORT_SYMBOL_GPL(regulator_get_linear_step);
+
+/**
* regulator_is_supported_voltage - check if a voltage range can be supported
*
* @regulator: Regulator to check.