diff options
Diffstat (limited to 'arch/x86_64/kernel/acpi/Makefile')
-rw-r--r-- | arch/x86_64/kernel/acpi/Makefile | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/arch/x86_64/kernel/acpi/Makefile b/arch/x86_64/kernel/acpi/Makefile index c24fe95b0d94..6e00bfeb59a9 100644 --- a/arch/x86_64/kernel/acpi/Makefile +++ b/arch/x86_64/kernel/acpi/Makefile | |||
@@ -1,9 +1,5 @@ | |||
1 | obj-y := boot.o | 1 | ifeq ($(CONFIG_X86_32),y) |
2 | boot-y := ../../../i386/kernel/acpi/boot.o | 2 | include ${srctree}/arch/i386/kernel/acpi/Makefile_32 |
3 | obj-$(CONFIG_ACPI_SLEEP) += sleep_64.o wakeup_64.o | 3 | else |
4 | 4 | include ${srctree}/arch/x86_64/kernel/acpi/Makefile_64 | |
5 | ifneq ($(CONFIG_ACPI_PROCESSOR),) | ||
6 | obj-y += processor.o | ||
7 | processor-y := ../../../i386/kernel/acpi/processor.o ../../../i386/kernel/acpi/cstate.o | ||
8 | endif | 5 | endif |
9 | |||