diff options
author | Bjorn Andersson | 2015-02-12 04:35:27 +0100 |
---|---|---|
committer | Mark Brown | 2015-03-09 19:32:25 +0100 |
commit | e39ce48f5362df9f87400b4909a6fb0f51b109ac (patch) | |
tree | 77e7ee654c85a19cf22cc44e6cfeb199ec2bce20 /include/linux/regulator | |
parent | Linux 4.0-rc1 (diff) | |
download | kernel-qcow2-linux-e39ce48f5362df9f87400b4909a6fb0f51b109ac.tar.gz kernel-qcow2-linux-e39ce48f5362df9f87400b4909a6fb0f51b109ac.tar.xz kernel-qcow2-linux-e39ce48f5362df9f87400b4909a6fb0f51b109ac.zip |
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 'include/linux/regulator')
-rw-r--r-- | include/linux/regulator/consumer.h | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/include/linux/regulator/consumer.h b/include/linux/regulator/consumer.h index d17e1ff7ad01..6d4e9d2289f0 100644 --- a/include/linux/regulator/consumer.h +++ b/include/linux/regulator/consumer.h @@ -238,7 +238,7 @@ int regulator_get_current_limit(struct regulator *regulator); int regulator_set_mode(struct regulator *regulator, unsigned int mode); unsigned int regulator_get_mode(struct regulator *regulator); -int regulator_set_optimum_mode(struct regulator *regulator, int load_uA); +int regulator_set_load(struct regulator *regulator, int load_uA); int regulator_allow_bypass(struct regulator *regulator, bool allow); @@ -479,8 +479,7 @@ static inline unsigned int regulator_get_mode(struct regulator *regulator) return REGULATOR_MODE_NORMAL; } -static inline int regulator_set_optimum_mode(struct regulator *regulator, - int load_uA) +static inline int regulator_set_load(struct regulator *regulator, int load_uA) { return REGULATOR_MODE_NORMAL; } @@ -555,4 +554,11 @@ static inline int regulator_is_supported_voltage_tol(struct regulator *regulator target_uV + tol_uV); } +/* TEMP: Wrapper to keep bisectability */ +static inline int regulator_set_optimum_mode(struct regulator *regulator, + int load_uA) +{ + return regulator_set_load(regulator, load_uA); +} + #endif |