diff options
author | Axel Lin <axel.lin@gmail.com> | 2012-01-29 04:52:37 -0500 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2012-01-29 16:29:45 -0500 |
commit | 2950c4bbf397fc7d3d778a97c32bba0e955b47fe (patch) | |
tree | ab093238fa1c94f163b387378cc6da55a68b2944 /include/linux/regulator/consumer.h | |
parent | e24abd6ec6c2dabccb825dc41d1725bc496b3a54 (diff) |
regulator: Add devm_regulator_put in consumer.h
Commit d5ad34f7cb "regulator: Implement devm_regulator_free()"
actually implements devm_regulator_put.
Thus rename devm_regulator_free to devm_regulator_put.
Also add empty devm_regulator_put for !CONFIG_REGULATOR
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'include/linux/regulator/consumer.h')
-rw-r--r-- | include/linux/regulator/consumer.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/linux/regulator/consumer.h b/include/linux/regulator/consumer.h index cef8f04efc34..b6c8d717c7ec 100644 --- a/include/linux/regulator/consumer.h +++ b/include/linux/regulator/consumer.h | |||
@@ -137,7 +137,7 @@ struct regulator *__must_check devm_regulator_get(struct device *dev, | |||
137 | struct regulator *__must_check regulator_get_exclusive(struct device *dev, | 137 | struct regulator *__must_check regulator_get_exclusive(struct device *dev, |
138 | const char *id); | 138 | const char *id); |
139 | void regulator_put(struct regulator *regulator); | 139 | void regulator_put(struct regulator *regulator); |
140 | void devm_regulator_free(struct regulator *regulator); | 140 | void devm_regulator_put(struct regulator *regulator); |
141 | 141 | ||
142 | /* regulator output control and status */ | 142 | /* regulator output control and status */ |
143 | int regulator_enable(struct regulator *regulator); | 143 | int regulator_enable(struct regulator *regulator); |
@@ -216,6 +216,10 @@ static inline void regulator_put(struct regulator *regulator) | |||
216 | { | 216 | { |
217 | } | 217 | } |
218 | 218 | ||
219 | static inline void devm_regulator_put(struct regulator *regulator) | ||
220 | { | ||
221 | } | ||
222 | |||
219 | static inline int regulator_enable(struct regulator *regulator) | 223 | static inline int regulator_enable(struct regulator *regulator) |
220 | { | 224 | { |
221 | return 0; | 225 | return 0; |