diff options
author | Ingo Molnar <mingo@elte.hu> | 2008-05-25 15:16:06 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-06-10 05:35:12 -0400 |
commit | af1cf204ba2fd8135933a2e4df523fb1112dc0e2 (patch) | |
tree | 6c5aaebf5e299e5f6c2fbc38bc0f2c9635f27042 /include/asm-x86 | |
parent | 6780711e9817585f89b02b0556aac3564cbe1f45 (diff) |
x86, mpparse: build fix
fix:
LD .tmp_vmlinux1
arch/x86/kernel/built-in.o: In function `setup_arch':
: undefined reference to `early_reserve_e820_mpc_new'
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/asm-x86')
-rw-r--r-- | include/asm-x86/mpspec.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/asm-x86/mpspec.h b/include/asm-x86/mpspec.h index 6e9c9588b1fc..b8ba37496e2d 100644 --- a/include/asm-x86/mpspec.h +++ b/include/asm-x86/mpspec.h | |||
@@ -46,7 +46,11 @@ extern unsigned long mp_lapic_addr; | |||
46 | 46 | ||
47 | extern void find_smp_config(void); | 47 | extern void find_smp_config(void); |
48 | extern void get_smp_config(void); | 48 | extern void get_smp_config(void); |
49 | #ifdef CONFIG_X86_MPPARSE | ||
49 | extern void early_reserve_e820_mpc_new(void); | 50 | extern void early_reserve_e820_mpc_new(void); |
51 | #else | ||
52 | static inline void early_reserve_e820_mpc_new(void) { } | ||
53 | #endif | ||
50 | 54 | ||
51 | void __cpuinit generic_processor_info(int apicid, int version); | 55 | void __cpuinit generic_processor_info(int apicid, int version); |
52 | #ifdef CONFIG_ACPI | 56 | #ifdef CONFIG_ACPI |