diff options
author | Glauber Costa <gcosta@redhat.com> | 2008-03-03 12:12:42 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-04-17 11:40:53 -0400 |
commit | 68a1c3f8cd893f5c3c1396fec5be7d8acac4fc93 (patch) | |
tree | 9e68b2943f67912535b649a45a659ee1fc076aa2 /arch/x86/kernel/Makefile | |
parent | 7b1292e2371e3ae2ac69fbb899d539ddc7b53a27 (diff) |
x86: move prefill_possible_map to common file
this patches moves prefill_possible_map() to smpboot.c
Right now it is x86_64-specific, but nothing intrinsically
prevents it to be used by i386
Signed-off-by: Glauber Costa <gcosta@redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/Makefile')
-rw-r--r-- | arch/x86/kernel/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/Makefile b/arch/x86/kernel/Makefile index df10327182d4..4c68bfc6df1d 100644 --- a/arch/x86/kernel/Makefile +++ b/arch/x86/kernel/Makefile | |||
@@ -46,7 +46,7 @@ obj-$(CONFIG_MICROCODE) += microcode.o | |||
46 | obj-$(CONFIG_PCI) += early-quirks.o | 46 | obj-$(CONFIG_PCI) += early-quirks.o |
47 | apm-y := apm_32.o | 47 | apm-y := apm_32.o |
48 | obj-$(CONFIG_APM) += apm.o | 48 | obj-$(CONFIG_APM) += apm.o |
49 | obj-$(CONFIG_X86_SMP) += smp_$(BITS).o smpboot_$(BITS).o tsc_sync.o | 49 | obj-$(CONFIG_X86_SMP) += smp_$(BITS).o smpboot_$(BITS).o smpboot.o tsc_sync.o |
50 | obj-$(CONFIG_X86_32_SMP) += smpcommon_32.o | 50 | obj-$(CONFIG_X86_32_SMP) += smpcommon_32.o |
51 | obj-$(CONFIG_X86_64_SMP) += smp_64.o smpboot_64.o tsc_sync.o | 51 | obj-$(CONFIG_X86_64_SMP) += smp_64.o smpboot_64.o tsc_sync.o |
52 | obj-$(CONFIG_X86_TRAMPOLINE) += trampoline_$(BITS).o | 52 | obj-$(CONFIG_X86_TRAMPOLINE) += trampoline_$(BITS).o |