aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
Diffstat (limited to 'arch')
-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 940185ecaed..bc6a101ed7e 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}