diff options
author | Adrian Bunk <bunk@stusta.de> | 2006-09-26 10:52:35 +0200 |
---|---|---|
committer | Andi Kleen <andi@basil.nowhere.org> | 2006-09-26 10:52:35 +0200 |
commit | 3d08a256da8aed5300bd0752200ece426f49b050 (patch) | |
tree | 26c7d5362b440fc0b855ff9b6ccace795125b309 /include/asm-i386/apic.h | |
parent | e8924acb2ef46b96c93f97025815ef3843cb67a2 (diff) | |
download | linux-3d08a256da8aed5300bd0752200ece426f49b050.tar.bz2 |
[PATCH] i386: Make enable_local_apic static
enable_local_apic can now become static.
Cc: len.brown@intel.com
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Andi Kleen <ak@suse.de>
Diffstat (limited to 'include/asm-i386/apic.h')
-rw-r--r-- | include/asm-i386/apic.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/include/asm-i386/apic.h b/include/asm-i386/apic.h index 8c5331ceca7b..3a42b7d6fc92 100644 --- a/include/asm-i386/apic.h +++ b/include/asm-i386/apic.h @@ -16,20 +16,8 @@ #define APIC_VERBOSE 1 #define APIC_DEBUG 2 -extern int enable_local_apic; extern int apic_verbosity; -static inline void lapic_disable(void) -{ - enable_local_apic = -1; - clear_bit(X86_FEATURE_APIC, boot_cpu_data.x86_capability); -} - -static inline void lapic_enable(void) -{ - enable_local_apic = 1; -} - /* * Define the default level of output to be very little * This can be turned up by using apic=verbose for more |