diff options
author | Bjorn Andersson <bjorn.andersson@sonymobile.com> | 2015-02-11 22:35:27 -0500 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2015-03-09 14:32:25 -0400 |
commit | e39ce48f5362df9f87400b4909a6fb0f51b109ac (patch) | |
tree | 77e7ee654c85a19cf22cc44e6cfeb199ec2bce20 /include/linux/regulator/consumer.h | |
parent | c517d838eb7d07bbe9507871fab3931deccff539 (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 'include/linux/regulator/consumer.h')
-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); | |||
238 | 238 | ||
239 | int regulator_set_mode(struct regulator *regulator, unsigned int mode); | 239 | int regulator_set_mode(struct regulator *regulator, unsigned int mode); |
240 | unsigned int regulator_get_mode(struct regulator *regulator); | 240 | unsigned int regulator_get_mode(struct regulator *regulator); |
241 | int regulator_set_optimum_mode(struct regulator *regulator, int load_uA); | 241 | int regulator_set_load(struct regulator *regulator, int load_uA); |
242 | 242 | ||
243 | int regulator_allow_bypass(struct regulator *regulator, bool allow); | 243 | int regulator_allow_bypass(struct regulator *regulator, bool allow); |
244 | 244 | ||
@@ -479,8 +479,7 @@ static inline unsigned int regulator_get_mode(struct regulator *regulator) | |||
479 | return REGULATOR_MODE_NORMAL; | 479 | return REGULATOR_MODE_NORMAL; |
480 | } | 480 | } |
481 | 481 | ||
482 | static inline int regulator_set_optimum_mode(struct regulator *regulator, | 482 | static inline int regulator_set_load(struct regulator *regulator, int load_uA) |
483 | int load_uA) | ||
484 | { | 483 | { |
485 | return REGULATOR_MODE_NORMAL; | 484 | return REGULATOR_MODE_NORMAL; |
486 | } | 485 | } |
@@ -555,4 +554,11 @@ static inline int regulator_is_supported_voltage_tol(struct regulator *regulator | |||
555 | target_uV + tol_uV); | 554 | target_uV + tol_uV); |
556 | } | 555 | } |
557 | 556 | ||
557 | /* TEMP: Wrapper to keep bisectability */ | ||
558 | static inline int regulator_set_optimum_mode(struct regulator *regulator, | ||
559 | int load_uA) | ||
560 | { | ||
561 | return regulator_set_load(regulator, load_uA); | ||
562 | } | ||
563 | |||
558 | #endif | 564 | #endif |