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 8ca0110819f4..a39670ae17df 100644
--- a/include/asm-x86/io_apic.h
+++ b/include/asm-x86/io_apic.h
@@ -160,12 +160,16 @@ extern int skip_ioapic_setup;
160/* 1 if "noapic" boot option passed */ 160/* 1 if "noapic" boot option passed */
161extern int noioapicquirk; 161extern int noioapicquirk;
162 162
163/* -1 if "noapic" boot option passed */
164extern int noioapicreroute;
165
163/* 1 if the timer IRQ uses the '8259A Virtual Wire' mode */ 166/* 1 if the timer IRQ uses the '8259A Virtual Wire' mode */
164extern int timer_through_8259; 167extern int timer_through_8259;
165 168
166static inline void disable_ioapic_setup(void) 169static inline void disable_ioapic_setup(void)
167{ 170{
168 noioapicquirk = 1; 171 noioapicquirk = 1;
172 noioapicreroute = -1;
169 skip_ioapic_setup = 1; 173 skip_ioapic_setup = 1;
170} 174}
171 175