diff options
Diffstat (limited to 'include/linux')
| -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; |
