diff options
author | Jan Beulich <jbeulich@novell.com> | 2007-05-02 19:27:04 +0200 |
---|---|---|
committer | Andi Kleen <andi@basil.nowhere.org> | 2007-05-02 19:27:04 +0200 |
commit | 00f1ea696702163b7411d2316264525996c66ed3 (patch) | |
tree | 96f6653c288c1a2046eecfd8d8c17e7b96136ea7 /include/asm-i386/smp.h | |
parent | 28609f6e4921ebb75ceaf5317454b8047b07cef4 (diff) | |
download | kernel-crypto-00f1ea696702163b7411d2316264525996c66ed3.tar.gz kernel-crypto-00f1ea696702163b7411d2316264525996c66ed3.tar.xz kernel-crypto-00f1ea696702163b7411d2316264525996c66ed3.zip |
[PATCH] x86: adjust inclusion of asm/fixmap.h
Move inclusion of asm/fixmap.h to where it is really used rather than
where it may have been used long ago (requires a few other adjustments
to includes due to previous implicit dependencies).
Signed-off-by: Jan Beulich <jbeulich@novell.com>
Signed-off-by: Andi Kleen <ak@suse.de>
Diffstat (limited to 'include/asm-i386/smp.h')
-rw-r--r-- | include/asm-i386/smp.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/include/asm-i386/smp.h b/include/asm-i386/smp.h index 6bf0033a301..9cab1531c61 100644 --- a/include/asm-i386/smp.h +++ b/include/asm-i386/smp.h @@ -11,16 +11,13 @@ #include <asm/pda.h> #endif -#ifdef CONFIG_X86_LOCAL_APIC -#ifndef __ASSEMBLY__ -#include <asm/fixmap.h> +#if defined(CONFIG_X86_LOCAL_APIC) && !defined(__ASSEMBLY__) #include <asm/bitops.h> #include <asm/mpspec.h> +#include <asm/apic.h> #ifdef CONFIG_X86_IO_APIC #include <asm/io_apic.h> #endif -#include <asm/apic.h> -#endif #endif #define BAD_APICID 0xFFu |