diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2007-10-11 05:13:19 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2007-10-11 05:13:19 -0400 |
commit | 96c4d6e71d27a2de591d185aa897d2d215f8588e (patch) | |
tree | ebde81704c1777100e933cd241d8fb53de9ff0ad /arch/i386 | |
parent | 84629d8d3695cab7177e9a04ccc212727280bdd8 (diff) |
i386: prepare shared kernel/acpi/Makefile
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/i386')
-rw-r--r-- | arch/i386/kernel/acpi/Makefile | 13 | ||||
-rw-r--r-- | arch/i386/kernel/acpi/Makefile_32 | 10 |
2 files changed, 14 insertions, 9 deletions
diff --git a/arch/i386/kernel/acpi/Makefile b/arch/i386/kernel/acpi/Makefile index a4852a2e9190..6e00bfeb59a9 100644 --- a/arch/i386/kernel/acpi/Makefile +++ b/arch/i386/kernel/acpi/Makefile | |||
@@ -1,10 +1,5 @@ | |||
1 | obj-$(CONFIG_ACPI) += boot.o | 1 | ifeq ($(CONFIG_X86_32),y) |
2 | ifneq ($(CONFIG_PCI),) | 2 | include ${srctree}/arch/i386/kernel/acpi/Makefile_32 |
3 | obj-$(CONFIG_X86_IO_APIC) += earlyquirk_32.o | 3 | else |
4 | include ${srctree}/arch/x86_64/kernel/acpi/Makefile_64 | ||
4 | endif | 5 | endif |
5 | obj-$(CONFIG_ACPI_SLEEP) += sleep_32.o wakeup_32.o | ||
6 | |||
7 | ifneq ($(CONFIG_ACPI_PROCESSOR),) | ||
8 | obj-y += cstate.o processor.o | ||
9 | endif | ||
10 | |||
diff --git a/arch/i386/kernel/acpi/Makefile_32 b/arch/i386/kernel/acpi/Makefile_32 new file mode 100644 index 000000000000..a4852a2e9190 --- /dev/null +++ b/arch/i386/kernel/acpi/Makefile_32 | |||
@@ -0,0 +1,10 @@ | |||
1 | obj-$(CONFIG_ACPI) += boot.o | ||
2 | ifneq ($(CONFIG_PCI),) | ||
3 | obj-$(CONFIG_X86_IO_APIC) += earlyquirk_32.o | ||
4 | endif | ||
5 | obj-$(CONFIG_ACPI_SLEEP) += sleep_32.o wakeup_32.o | ||
6 | |||
7 | ifneq ($(CONFIG_ACPI_PROCESSOR),) | ||
8 | obj-y += cstate.o processor.o | ||
9 | endif | ||
10 | |||