diff options
author | Jaswinder Singh Rajput <jaswinder@infradead.org> | 2009-01-11 13:08:55 (GMT) |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-01-12 18:24:22 (GMT) |
commit | 4884d8e6a05026ec906355436cea9dc1acb1d09e (patch) | |
tree | 2424a9b2e9f8faacf58a0fe265ce15c36e2e94c0 | |
parent | f313e12308f7c5ea645f18e759d104d088b18615 (diff) | |
download | linux-4884d8e6a05026ec906355436cea9dc1acb1d09e.tar.xz |
x86: fix mpparse.c build error on latest git
Fix this by reintroducing asm/smp.h include in mpparse.c - later on
I will fix this by removing non-smp data from smp.h.
Reported-by: Petr Titera <P.Titera@century.cz>
Signed-off-by: Jaswinder Singh Rajput <jaswinderrajput@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
-rw-r--r-- | arch/x86/kernel/mpparse.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/kernel/mpparse.c b/arch/x86/kernel/mpparse.c index c0601c2..a649a4c 100644 --- a/arch/x86/kernel/mpparse.c +++ b/arch/x86/kernel/mpparse.c @@ -27,6 +27,7 @@ #include <asm/e820.h> #include <asm/trampoline.h> #include <asm/setup.h> +#include <asm/smp.h> #include <mach_apic.h> #ifdef CONFIG_X86_32 |