cf7700fe24
Move arch/x86/kernel/suspend_64.c to arch/x86/power . Move arch/x86/kernel/suspend_asm_64.S to arch/x86/power as hibernate_asm_64.S . Update purpose and copyright information in arch/x86/power/suspend_64.c and arch/x86/power/hibernate_asm_64.S . Update the Makefiles in arch/x86, arch/x86/kernel and arch/x86/power to reflect the above changes. Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl> Acked-by: Pavel Machek <pavel@ucw.cz> Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
8 lines
212 B
Makefile
8 lines
212 B
Makefile
ifeq ($(CONFIG_X86_64),y)
|
|
obj-$(CONFIG_PM) += suspend_64.o
|
|
obj-$(CONFIG_HIBERNATION) += hibernate_asm_64.o
|
|
else
|
|
obj-$(CONFIG_PM) += cpu.o
|
|
obj-$(CONFIG_HIBERNATION) += swsusp.o suspend.o
|
|
endif
|