mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 09:41:44 +00:00
d690b2cd22
There are subsystems whose power management callbacks only need to invoke the callbacks provided by device drivers. Still, their system sleep PM callbacks should play well with the runtime PM callbacks, so that devices suspended at run time can be left in that state for a system sleep transition. Provide a set of generic PM callbacks for such subsystems and define convenience macros for populating dev_pm_ops structures. Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
9 lines
260 B
Makefile
9 lines
260 B
Makefile
obj-$(CONFIG_PM) += sysfs.o
|
|
obj-$(CONFIG_PM_SLEEP) += main.o
|
|
obj-$(CONFIG_PM_RUNTIME) += runtime.o
|
|
obj-$(CONFIG_PM_OPS) += generic_ops.o
|
|
obj-$(CONFIG_PM_TRACE_RTC) += trace.o
|
|
|
|
ccflags-$(CONFIG_DEBUG_DRIVER) := -DDEBUG
|
|
ccflags-$(CONFIG_PM_VERBOSE) += -DDEBUG
|