aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/pci
diff options
context:
space:
mode:
authorStefan Assmann <sassmann@suse.de>2008-06-11 10:35:14 -0400
committerIngo Molnar <mingo@elte.hu>2008-07-08 11:50:49 -0400
commita9322f6488b432ddc1e89be88242c827c633fb63 (patch)
treeb6225440a3747faca1b24e3de0cded1680d791a4 /arch/x86/pci
parent747ada36ee23225d81657e4d633ac93b8ccbea7d (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.c4
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
23static int pci_bf_sort; 23static int pci_bf_sort;
24int pci_routeirq; 24int pci_routeirq;
25int noioapicquirk;
25int pcibios_last_bus = -1; 26int pcibios_last_bus = -1;
26unsigned long pirq_table_addr; 27unsigned long pirq_table_addr;
27struct pci_bus *pci_root_bus; 28struct 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}