37b0c02034
device_shutdown does not need to be in a separate file. Move it into the driver core file where it belongs. This also moves us one more step closer to making devices_kset static, now only the crazy sysdevs are keeping that from happening... Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
11 lines
218 B
Makefile
11 lines
218 B
Makefile
obj-$(CONFIG_PM) += sysfs.o
|
|
obj-$(CONFIG_PM_SLEEP) += main.o
|
|
obj-$(CONFIG_PM_TRACE) += trace.o
|
|
|
|
ifeq ($(CONFIG_DEBUG_DRIVER),y)
|
|
EXTRA_CFLAGS += -DDEBUG
|
|
endif
|
|
ifeq ($(CONFIG_PM_VERBOSE),y)
|
|
EXTRA_CFLAGS += -DDEBUG
|
|
endif
|