diff options
| -rw-r--r-- | Documentation/power/runtime_pm.txt | 3 | ||||
| -rw-r--r-- | include/linux/pm_runtime.h | 6 |
2 files changed, 9 insertions, 0 deletions
diff --git a/Documentation/power/runtime_pm.txt b/Documentation/power/runtime_pm.txt index 40e47c75f064..14dd3c6ad97e 100644 --- a/Documentation/power/runtime_pm.txt +++ b/Documentation/power/runtime_pm.txt | |||
| @@ -412,6 +412,9 @@ drivers/base/power/runtime.c and include/linux/pm_runtime.h: | |||
| 412 | - return true if the device's runtime PM status is 'suspended' and its | 412 | - return true if the device's runtime PM status is 'suspended' and its |
| 413 | 'power.disable_depth' field is equal to zero, or false otherwise | 413 | 'power.disable_depth' field is equal to zero, or false otherwise |
| 414 | 414 | ||
| 415 | bool pm_runtime_status_suspended(struct device *dev); | ||
| 416 | - return true if the device's runtime PM status is 'suspended' | ||
| 417 | |||
| 415 | void pm_runtime_allow(struct device *dev); | 418 | void pm_runtime_allow(struct device *dev); |
| 416 | - set the power.runtime_auto flag for the device and decrease its usage | 419 | - set the power.runtime_auto flag for the device and decrease its usage |
| 417 | counter (used by the /sys/devices/.../power/control interface to | 420 | counter (used by the /sys/devices/.../power/control interface to |
diff --git a/include/linux/pm_runtime.h b/include/linux/pm_runtime.h index dfb8539ed686..daac05d751b2 100644 --- a/include/linux/pm_runtime.h +++ b/include/linux/pm_runtime.h | |||
| @@ -82,6 +82,11 @@ static inline bool pm_runtime_suspended(struct device *dev) | |||
| 82 | && !dev->power.disable_depth; | 82 | && !dev->power.disable_depth; |
| 83 | } | 83 | } |
| 84 | 84 | ||
| 85 | static inline bool pm_runtime_status_suspended(struct device *dev) | ||
| 86 | { | ||
| 87 | return dev->power.runtime_status == RPM_SUSPENDED; | ||
| 88 | } | ||
| 89 | |||
| 85 | static inline bool pm_runtime_enabled(struct device *dev) | 90 | static inline bool pm_runtime_enabled(struct device *dev) |
| 86 | { | 91 | { |
| 87 | return !dev->power.disable_depth; | 92 | return !dev->power.disable_depth; |
| @@ -130,6 +135,7 @@ static inline void pm_runtime_put_noidle(struct device *dev) {} | |||
| 130 | static inline bool device_run_wake(struct device *dev) { return false; } | 135 | static inline bool device_run_wake(struct device *dev) { return false; } |
| 131 | static inline void device_set_run_wake(struct device *dev, bool enable) {} | 136 | static inline void device_set_run_wake(struct device *dev, bool enable) {} |
| 132 | static inline bool pm_runtime_suspended(struct device *dev) { return false; } | 137 | static inline bool pm_runtime_suspended(struct device *dev) { return false; } |
| 138 | static inline bool pm_runtime_status_suspended(struct device *dev) { return false; } | ||
| 133 | static inline bool pm_runtime_enabled(struct device *dev) { return false; } | 139 | static inline bool pm_runtime_enabled(struct device *dev) { return false; } |
| 134 | 140 | ||
| 135 | static inline int pm_generic_runtime_idle(struct device *dev) { return 0; } | 141 | static inline int pm_generic_runtime_idle(struct device *dev) { return 0; } |
