1 Index: linux-2.6.23/drivers/pci/Kconfig
2 ==================================================================
3 --- linux-2.6.23.orig/drivers/pci/Kconfig 2007-10-09 22:31:38.000000000 +0200
4 +++ linux-2.6.23/drivers/pci/Kconfig 2007-10-13 14:21:03.000000000 +0200
9 +config PCI_DISABLE_COMMON_QUIRKS
10 + bool "PCI disable common quirks"
13 + If you don't know what to do here, say N.
16 bool "Interrupts on hypertransport devices"
18 Index: linux-2.6.23/drivers/pci/quirks.c
19 ==================================================================
20 --- linux-2.6.23.orig/drivers/pci/quirks.c 2007-10-09 22:31:38.000000000 +0200
21 +++ linux-2.6.23/drivers/pci/quirks.c 2007-10-13 14:46:41.000000000 +0200
23 #include <linux/acpi.h>
26 +#ifndef CONFIG_PCI_DISABLE_COMMON_QUIRKS
27 /* The Mellanox Tavor device gives false positive parity errors
28 * Mark this device with a broken_parity_status, to allow
29 * PCI scanning code to "skip" this now blacklisted device.
33 DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_NCR, PCI_DEVICE_ID_NCR_53C810, fixup_rev1_53c810);
34 +#endif /* !CONFIG_PCI_DISABLE_COMMON_QUIRKS */
36 static void pci_do_fixups(struct pci_dev *dev, struct pci_fixup *f, struct pci_fixup *end)
40 EXPORT_SYMBOL(pci_fixup_device);
42 +#ifndef CONFIG_PCI_DISABLE_COMMON_QUIRKS
43 /* Enable 1k I/O space granularity on the Intel P64H2 */
44 static void __devinit quirk_p64h2_1k_io(struct pci_dev *dev)
47 DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_CK804_PCIE,
48 quirk_nvidia_ck804_msi_ht_cap);
49 #endif /* CONFIG_PCI_MSI */
50 +#endif /* !CONFIG_PCI_DISABLE_COMMON_QUIRKS */