aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/power
diff options
context:
space:
mode:
authorGeert Uytterhoeven <geert+renesas@glider.be>2014-03-24 16:31:30 -0400
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2014-03-26 11:33:06 -0400
commitfd6fe82673a87f188283b7fc2bdde4ffa0085f2a (patch)
tree1f31eec12c30399bfa830a0277c11288a3dc1b17 /Documentation/power
parent39c29f3dfc5bd9f40ae72f79e509e6cfbb22a50b (diff)
PM / Runtime: GENERIC_SUBSYS_PM_OPS is gone
Update the documentation for the removal of GENERIC_SUBSYS_PM_OPS in commit 90363ddf0a1a4dccfbb8d0c10b8f488bc7fa69f8 ("PM: Drop generic_subsys_pm_ops") Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'Documentation/power')
-rw-r--r--Documentation/power/runtime_pm.txt11
1 files changed, 4 insertions, 7 deletions
diff --git a/Documentation/power/runtime_pm.txt b/Documentation/power/runtime_pm.txt
index 8cc48b05939d..0c1c4124d23a 100644
--- a/Documentation/power/runtime_pm.txt
+++ b/Documentation/power/runtime_pm.txt
@@ -727,15 +727,12 @@ driver/base/power/generic_ops.c:
727 int pm_generic_restore_noirq(struct device *dev); 727 int pm_generic_restore_noirq(struct device *dev);
728 - invoke the ->restore_noirq() callback provided by the device's driver 728 - invoke the ->restore_noirq() callback provided by the device's driver
729 729
730These functions can be assigned to the ->runtime_idle(), ->runtime_suspend(), 730These functions are the defaults used by the PM core, if a subsystem doesn't
731provide its own callbacks for ->runtime_idle(), ->runtime_suspend(),
731->runtime_resume(), ->suspend(), ->suspend_noirq(), ->resume(), 732->runtime_resume(), ->suspend(), ->suspend_noirq(), ->resume(),
732->resume_noirq(), ->freeze(), ->freeze_noirq(), ->thaw(), ->thaw_noirq(), 733->resume_noirq(), ->freeze(), ->freeze_noirq(), ->thaw(), ->thaw_noirq(),
733->poweroff(), ->poweroff_noirq(), ->restore(), ->restore_noirq() callback 734->poweroff(), ->poweroff_noirq(), ->restore(), ->restore_noirq() in the
734pointers in the subsystem-level dev_pm_ops structures. 735subsystem-level dev_pm_ops structure.
735
736If a subsystem wishes to use all of them at the same time, it can simply assign
737the GENERIC_SUBSYS_PM_OPS macro, defined in include/linux/pm.h, to its
738dev_pm_ops structure pointer.
739 736
740Device drivers that wish to use the same function as a system suspend, freeze, 737Device drivers that wish to use the same function as a system suspend, freeze,
741poweroff and runtime suspend callback, and similarly for system resume, thaw, 738poweroff and runtime suspend callback, and similarly for system resume, thaw,