mirror of
https://github.com/torvalds/linux.git
synced 2024-11-08 13:11:45 +00:00
c57591244a
Rename cpu.c, suspend.c and swsusp.S in arch/x86/power to cpu_32.c, hibernate_32.c and hibernate_asm_32.S, respectively, and update the purpose and copyright information in these files. Update the Makefile in 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
230 B
Makefile
8 lines
230 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_32.o
|
|
obj-$(CONFIG_HIBERNATION) += hibernate_32.o hibernate_asm_32.o
|
|
endif
|