diff options
-rw-r--r-- | include/linux/pm_runtime.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/pm_runtime.h b/include/linux/pm_runtime.h index 99ed1aa8f933..3ec2358f8692 100644 --- a/include/linux/pm_runtime.h +++ b/include/linux/pm_runtime.h | |||
@@ -164,6 +164,11 @@ static inline int pm_request_resume(struct device *dev) | |||
164 | return __pm_runtime_resume(dev, RPM_ASYNC); | 164 | return __pm_runtime_resume(dev, RPM_ASYNC); |
165 | } | 165 | } |
166 | 166 | ||
167 | static inline int pm_request_autosuspend(struct device *dev) | ||
168 | { | ||
169 | return __pm_runtime_suspend(dev, RPM_ASYNC | RPM_AUTO); | ||
170 | } | ||
171 | |||
167 | static inline int pm_runtime_get(struct device *dev) | 172 | static inline int pm_runtime_get(struct device *dev) |
168 | { | 173 | { |
169 | return __pm_runtime_resume(dev, RPM_GET_PUT | RPM_ASYNC); | 174 | return __pm_runtime_resume(dev, RPM_GET_PUT | RPM_ASYNC); |