diff options
author | Stefan Assmann <sassmann@suse.de> | 2008-06-11 10:35:14 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-07-08 11:50:49 -0400 |
commit | a9322f6488b432ddc1e89be88242c827c633fb63 (patch) | |
tree | b6225440a3747faca1b24e3de0cded1680d791a4 /arch/x86/pci | |
parent | 747ada36ee23225d81657e4d633ac93b8ccbea7d (diff) |
x86, pci: introduce pci=noioapicquirk kernel cmdline option
Introduce pci=noioapicquirk kernel cmdline option to disable all boot
interrupt quirks
Signed-off-by: Stefan Assmann <sassmann@suse.de>
Signed-off-by: Olaf Dabrunz <od@suse.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/pci')
-rw-r--r-- | arch/x86/pci/common.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/x86/pci/common.c b/arch/x86/pci/common.c index 940185ecaeda..bc6a101ed7ec 100644 --- a/arch/x86/pci/common.c +++ b/arch/x86/pci/common.c | |||
@@ -22,6 +22,7 @@ unsigned int pci_probe = PCI_PROBE_BIOS | PCI_PROBE_CONF1 | PCI_PROBE_CONF2 | | |||
22 | 22 | ||
23 | static int pci_bf_sort; | 23 | static int pci_bf_sort; |
24 | int pci_routeirq; | 24 | int pci_routeirq; |
25 | int noioapicquirk; | ||
25 | int pcibios_last_bus = -1; | 26 | int pcibios_last_bus = -1; |
26 | unsigned long pirq_table_addr; | 27 | unsigned long pirq_table_addr; |
27 | struct pci_bus *pci_root_bus; | 28 | struct pci_bus *pci_root_bus; |
@@ -495,6 +496,9 @@ char * __devinit pcibios_setup(char *str) | |||
495 | } else if (!strcmp(str, "skip_isa_align")) { | 496 | } else if (!strcmp(str, "skip_isa_align")) { |
496 | pci_probe |= PCI_CAN_SKIP_ISA_ALIGN; | 497 | pci_probe |= PCI_CAN_SKIP_ISA_ALIGN; |
497 | return NULL; | 498 | return NULL; |
499 | } else if (!strcmp(str, "noioapicquirk")) { | ||
500 | noioapicquirk = 1; | ||
501 | return NULL; | ||
498 | } | 502 | } |
499 | return str; | 503 | return str; |
500 | } | 504 | } |