diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2007-10-23 16:37:23 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2007-10-23 16:37:23 -0400 |
commit | 5e4181b31366ea13b7b81ce3b0041f5710cc8b65 (patch) | |
tree | 85c690afcda1af1f093434d4fff4854dd82fa3ae /arch/x86 | |
parent | 9b58aebc73095c045826d891f8e8de6d5bd48c12 (diff) |
x86: Unify arch/x86/kernel/acpi Makefiles
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/kernel/acpi/Makefile | 10 | ||||
-rw-r--r-- | arch/x86/kernel/acpi/Makefile_32 | 7 | ||||
-rw-r--r-- | arch/x86/kernel/acpi/Makefile_64 | 7 |
3 files changed, 6 insertions, 18 deletions
diff --git a/arch/x86/kernel/acpi/Makefile b/arch/x86/kernel/acpi/Makefile index 3d5671939542..1351c3982ee4 100644 --- a/arch/x86/kernel/acpi/Makefile +++ b/arch/x86/kernel/acpi/Makefile | |||
@@ -1,5 +1,7 @@ | |||
1 | ifeq ($(CONFIG_X86_32),y) | 1 | obj-$(CONFIG_ACPI) += boot.o |
2 | include ${srctree}/arch/x86/kernel/acpi/Makefile_32 | 2 | obj-$(CONFIG_ACPI_SLEEP) += sleep_$(BITS).o wakeup_$(BITS).o |
3 | else | 3 | |
4 | include ${srctree}/arch/x86/kernel/acpi/Makefile_64 | 4 | ifneq ($(CONFIG_ACPI_PROCESSOR),) |
5 | obj-y += cstate.o processor.o | ||
5 | endif | 6 | endif |
7 | |||
diff --git a/arch/x86/kernel/acpi/Makefile_32 b/arch/x86/kernel/acpi/Makefile_32 deleted file mode 100644 index 045dd54b33e0..000000000000 --- a/arch/x86/kernel/acpi/Makefile_32 +++ /dev/null | |||
@@ -1,7 +0,0 @@ | |||
1 | obj-$(CONFIG_ACPI) += boot.o | ||
2 | obj-$(CONFIG_ACPI_SLEEP) += sleep_32.o wakeup_32.o | ||
3 | |||
4 | ifneq ($(CONFIG_ACPI_PROCESSOR),) | ||
5 | obj-y += cstate.o processor.o | ||
6 | endif | ||
7 | |||
diff --git a/arch/x86/kernel/acpi/Makefile_64 b/arch/x86/kernel/acpi/Makefile_64 deleted file mode 100644 index 629425bc002d..000000000000 --- a/arch/x86/kernel/acpi/Makefile_64 +++ /dev/null | |||
@@ -1,7 +0,0 @@ | |||
1 | obj-y := boot.o | ||
2 | obj-$(CONFIG_ACPI_SLEEP) += sleep_64.o wakeup_64.o | ||
3 | |||
4 | ifneq ($(CONFIG_ACPI_PROCESSOR),) | ||
5 | obj-y += processor.o cstate.o | ||
6 | endif | ||
7 | |||