aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/regulator
diff options
context:
space:
mode:
authorBjorn Andersson <bjorn.andersson@sonymobile.com>2015-02-11 22:35:27 -0500
committerMark Brown <broonie@kernel.org>2015-03-09 14:32:25 -0400
commite39ce48f5362df9f87400b4909a6fb0f51b109ac (patch)
tree77e7ee654c85a19cf22cc44e6cfeb199ec2bce20 /drivers/regulator
parentc517d838eb7d07bbe9507871fab3931deccff539 (diff)
regulator: Rename regulator_set_optimum_mode
Rename the regulator_set_optimum_mode() function regulator_set_load() to better represent what's going on. Signed-off-by: Bjorn Andersson <bjorn.andersson@sonymobile.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/regulator')
-rw-r--r--drivers/regulator/core.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/regulator/core.c b/drivers/regulator/core.c
index b899947d839d..03088f9c3d4f 100644
--- a/drivers/regulator/core.c
+++ b/drivers/regulator/core.c
@@ -2994,7 +2994,7 @@ unsigned int regulator_get_mode(struct regulator *regulator)
2994EXPORT_SYMBOL_GPL(regulator_get_mode); 2994EXPORT_SYMBOL_GPL(regulator_get_mode);
2995 2995
2996/** 2996/**
2997 * regulator_set_optimum_mode - set regulator optimum operating mode 2997 * regulator_set_load - set regulator load
2998 * @regulator: regulator source 2998 * @regulator: regulator source
2999 * @uA_load: load current 2999 * @uA_load: load current
3000 * 3000 *
@@ -3017,9 +3017,9 @@ EXPORT_SYMBOL_GPL(regulator_get_mode);
3017 * DRMS will sum the total requested load on the regulator and change 3017 * DRMS will sum the total requested load on the regulator and change
3018 * to the most efficient operating mode if platform constraints allow. 3018 * to the most efficient operating mode if platform constraints allow.
3019 * 3019 *
3020 * Returns the new regulator mode or error. 3020 * On error a negative errno is returned.
3021 */ 3021 */
3022int regulator_set_optimum_mode(struct regulator *regulator, int uA_load) 3022int regulator_set_load(struct regulator *regulator, int uA_load)
3023{ 3023{
3024 struct regulator_dev *rdev = regulator->rdev; 3024 struct regulator_dev *rdev = regulator->rdev;
3025 int ret; 3025 int ret;
@@ -3031,7 +3031,7 @@ int regulator_set_optimum_mode(struct regulator *regulator, int uA_load)
3031 3031
3032 return ret; 3032 return ret;
3033} 3033}
3034EXPORT_SYMBOL_GPL(regulator_set_optimum_mode); 3034EXPORT_SYMBOL_GPL(regulator_set_load);
3035 3035
3036/** 3036/**
3037 * regulator_allow_bypass - allow the regulator to go into bypass mode 3037 * regulator_allow_bypass - allow the regulator to go into bypass mode