]> Git Repo - linux.git/commitdiff
PM: runtime: Clarify documentation when callbacks are unassigned
authorUlf Hansson <[email protected]>
Wed, 9 Jun 2021 10:06:10 +0000 (12:06 +0200)
committerRafael J. Wysocki <[email protected]>
Fri, 11 Jun 2021 17:04:07 +0000 (19:04 +0200)
Recent changes to the PM core allows ->runtime_suspend|resume callbacks to
be unassigned.

In the earlier behaviour the PM core would return -ENOSYS, when trying to
runtime resume a device, for example. Let's update the documentation to
clarify this.

Signed-off-by: Ulf Hansson <[email protected]>
Acked-by: Alan Stern <[email protected]>
Signed-off-by: Rafael J. Wysocki <[email protected]>
Documentation/power/runtime_pm.rst

index b48cac5f9048957e585bdf70e52e949fb50dda2f..d6bf84f061f4121d67fe34675e81d4e5aaa594dd 100644 (file)
@@ -831,6 +831,15 @@ or driver about runtime power changes.  Instead, the driver for the device's
 parent must take responsibility for telling the device's driver when the
 parent's power state changes.
 
+Note that, in some cases it may not be desirable for subsystems/drivers to call
+pm_runtime_no_callbacks() for their devices. This could be because a subset of
+the runtime PM callbacks needs to be implemented, a platform dependent PM
+domain could get attached to the device or that the device is power managed
+through a supplier device link. For these reasons and to avoid boilerplate code
+in subsystems/drivers, the PM core allows runtime PM callbacks to be
+unassigned. More precisely, if a callback pointer is NULL, the PM core will act
+as though there was a callback and it returned 0.
+
 9. Autosuspend, or automatically-delayed suspends
 =================================================
 
This page took 0.061253 seconds and 4 git commands to generate.