aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-x86/io_apic.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/asm-x86/io_apic.h')
-rw-r--r--include/asm-x86/io_apic.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/asm-x86/io_apic.h b/include/asm-x86/io_apic.h
index 14f82bbcb5fd..8ca0110819f4 100644
--- a/include/asm-x86/io_apic.h
+++ b/include/asm-x86/io_apic.h
@@ -157,11 +157,15 @@ extern int sis_apic_bug;
157/* 1 if "noapic" boot option passed */ 157/* 1 if "noapic" boot option passed */
158extern int skip_ioapic_setup; 158extern int skip_ioapic_setup;
159 159
160/* 1 if "noapic" boot option passed */
161extern int noioapicquirk;
162
160/* 1 if the timer IRQ uses the '8259A Virtual Wire' mode */ 163/* 1 if the timer IRQ uses the '8259A Virtual Wire' mode */
161extern int timer_through_8259; 164extern int timer_through_8259;
162 165
163static inline void disable_ioapic_setup(void) 166static inline void disable_ioapic_setup(void)
164{ 167{
168 noioapicquirk = 1;
165 skip_ioapic_setup = 1; 169 skip_ioapic_setup = 1;
166} 170}
167 171