eb71c87a49
Considering that there isn't a lot of hw we can depend on during resume, this is about as good as it gets. This is x86-only for now, although the basic concept (and most of the code) will certainly work on almost any platform. Signed-off-by: Linus Torvalds <torvalds@osdl.org>
11 lines
241 B
Makefile
11 lines
241 B
Makefile
obj-y := shutdown.o
|
|
obj-$(CONFIG_PM) += main.o suspend.o resume.o runtime.o sysfs.o
|
|
obj-$(CONFIG_PM_TRACE) += trace.o
|
|
|
|
ifeq ($(CONFIG_DEBUG_DRIVER),y)
|
|
EXTRA_CFLAGS += -DDEBUG
|
|
endif
|
|
ifeq ($(CONFIG_PM_DEBUG),y)
|
|
EXTRA_CFLAGS += -DDEBUG
|
|
endif
|