PM: runtime: Allow unassigned ->runtime_suspend|resume callbacks
authorUlf Hansson <ulf.hansson@linaro.org>
Tue, 8 Jun 2021 09:02:49 +0000 (11:02 +0200)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Fri, 11 Jun 2021 17:03:01 +0000 (19:03 +0200)
commit63d00be69348fda431ae59aba6af268a5cf5058e
tree994a4a233bf498e739e234bff13e22b8d4c06544
parent5a2bd1b1c64e1ac5627db3767ac465f18606315c
PM: runtime: Allow unassigned ->runtime_suspend|resume callbacks

We are currently allowing ->runtime_idle() callbacks to be unassigned
without returning an error code from rpm_idle(). This has been useful to
avoid boilerplate code in drivers. Let's take this approach a step further,
by allowing also unassigned ->runtime_suspend|resume() callbacks.

In this way, a consumer/supplier device link can be used to let a consumer
device be power managed through its supplier device, without requiring
assigned ->runtime_suspend|resume() callbacks for the consumer device, for
example.

Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Acked-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
drivers/base/power/runtime.c