diff options
author | Axel Lin <axel.lin@ingics.com> | 2013-04-18 10:34:49 +0800 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2013-04-18 12:09:32 +0100 |
commit | fcf371ee5624cc87abac205cd0dad2432d7f0346 (patch) | |
tree | 114e44dec314e4e65ed8e8fc44a82d3aed661536 /include | |
parent | 41ef2d5678d83af030125550329b6ae8b74618fa (diff) | |
download | linux-stable-fcf371ee5624cc87abac205cd0dad2432d7f0346.tar.gz linux-stable-fcf371ee5624cc87abac205cd0dad2432d7f0346.tar.bz2 linux-stable-fcf371ee5624cc87abac205cd0dad2432d7f0346.zip |
regulator: core: Add regulator_map_voltage_ascend() API
A lot of regulator hardware has ascendant voltage list.
This patch adds regulator_map_voltage_ascend() and export it.
Drivers that have ascendant voltage list can use this as their map_voltage()
operation, this is more efficient than default regulator_map_voltage_iterate()
function.
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/regulator/driver.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/regulator/driver.h b/include/linux/regulator/driver.h index 7df93f52db08..2acdc66f8342 100644 --- a/include/linux/regulator/driver.h +++ b/include/linux/regulator/driver.h @@ -329,6 +329,8 @@ int regulator_map_voltage_linear(struct regulator_dev *rdev, int min_uV, int max_uV); int regulator_map_voltage_iterate(struct regulator_dev *rdev, int min_uV, int max_uV); +int regulator_map_voltage_ascend(struct regulator_dev *rdev, + int min_uV, int max_uV); int regulator_get_voltage_sel_regmap(struct regulator_dev *rdev); int regulator_set_voltage_sel_regmap(struct regulator_dev *rdev, unsigned sel); int regulator_is_enabled_regmap(struct regulator_dev *rdev); |