diff options
Diffstat (limited to 'arch/x86/include/asm/apic.h')
-rw-r--r-- | arch/x86/include/asm/apic.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/arch/x86/include/asm/apic.h b/arch/x86/include/asm/apic.h index ab1d51a8855e..e8f030440bc7 100644 --- a/arch/x86/include/asm/apic.h +++ b/arch/x86/include/asm/apic.h | |||
@@ -41,6 +41,21 @@ extern unsigned int apic_verbosity; | |||
41 | extern int local_apic_timer_c2_ok; | 41 | extern int local_apic_timer_c2_ok; |
42 | 42 | ||
43 | extern int disable_apic; | 43 | extern int disable_apic; |
44 | |||
45 | #ifdef CONFIG_SMP | ||
46 | extern void __inquire_remote_apic(int apicid); | ||
47 | #else /* CONFIG_SMP */ | ||
48 | static inline void __inquire_remote_apic(int apicid) | ||
49 | { | ||
50 | } | ||
51 | #endif /* CONFIG_SMP */ | ||
52 | |||
53 | static inline void default_inquire_remote_apic(int apicid) | ||
54 | { | ||
55 | if (apic_verbosity >= APIC_DEBUG) | ||
56 | __inquire_remote_apic(apicid); | ||
57 | } | ||
58 | |||
44 | /* | 59 | /* |
45 | * Basic functions accessing APICs. | 60 | * Basic functions accessing APICs. |
46 | */ | 61 | */ |