diff options
author | Kevin Hilman <khilman@ti.com> | 2011-07-12 05:17:09 -0400 |
---|---|---|
committer | Rafael J. Wysocki <rjw@sisk.pl> | 2011-07-12 05:17:09 -0400 |
commit | f3393b62f157cc87f8d78247e97b87778dc077b8 (patch) | |
tree | 4a7d35cde88675f6c4f4b284c2e249d050068dd6 /Documentation/power/runtime_pm.txt | |
parent | 2cffff1281a74714c9e035322077ec52ffb1f838 (diff) |
PM / Runtime: Add new helper function: pm_runtime_status_suspended()
This boolean function simply returns whether or not the runtime status
of the device is 'suspended'. Unlike pm_runtime_suspended(), this
function returns the runtime status whether or not runtime PM for the
device has been disabled or not.
Also add entry to Documentation/power/runtime.txt
Signed-off-by: Kevin Hilman <khilman@ti.com>
Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
Diffstat (limited to 'Documentation/power/runtime_pm.txt')
-rw-r--r-- | Documentation/power/runtime_pm.txt | 3 |
1 files changed, 3 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 |