diff options
Diffstat (limited to 'include/linux/pwm.h')
-rw-r--r-- | include/linux/pwm.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/linux/pwm.h b/include/linux/pwm.h index 76a1959f2b23..70655a205b74 100644 --- a/include/linux/pwm.h +++ b/include/linux/pwm.h | |||
@@ -179,6 +179,8 @@ struct pwm_device *of_pwm_get(struct device_node *np, const char *con_id); | |||
179 | void pwm_put(struct pwm_device *pwm); | 179 | void pwm_put(struct pwm_device *pwm); |
180 | 180 | ||
181 | struct pwm_device *devm_pwm_get(struct device *dev, const char *con_id); | 181 | struct pwm_device *devm_pwm_get(struct device *dev, const char *con_id); |
182 | struct pwm_device *devm_of_pwm_get(struct device *dev, struct device_node *np, | ||
183 | const char *con_id); | ||
182 | void devm_pwm_put(struct device *dev, struct pwm_device *pwm); | 184 | void devm_pwm_put(struct device *dev, struct pwm_device *pwm); |
183 | #else | 185 | #else |
184 | static inline int pwm_set_chip_data(struct pwm_device *pwm, void *data) | 186 | static inline int pwm_set_chip_data(struct pwm_device *pwm, void *data) |
@@ -230,6 +232,13 @@ static inline struct pwm_device *devm_pwm_get(struct device *dev, | |||
230 | return ERR_PTR(-ENODEV); | 232 | return ERR_PTR(-ENODEV); |
231 | } | 233 | } |
232 | 234 | ||
235 | static inline struct pwm_device *devm_of_pwm_get(struct device *dev, | ||
236 | struct device_node *np, | ||
237 | const char *con_id) | ||
238 | { | ||
239 | return ERR_PTR(-ENODEV); | ||
240 | } | ||
241 | |||
233 | static inline void devm_pwm_put(struct device *dev, struct pwm_device *pwm) | 242 | static inline void devm_pwm_put(struct device *dev, struct pwm_device *pwm) |
234 | { | 243 | { |
235 | } | 244 | } |