|
@@ -25,14 +25,9 @@
|
|
#include <linux/dmi.h>
|
|
#include <linux/dmi.h>
|
|
#include <linux/pci-aspm.h>
|
|
#include <linux/pci-aspm.h>
|
|
#include <linux/ioport.h>
|
|
#include <linux/ioport.h>
|
|
|
|
+#include <asm/dma.h> /* isa_dma_bridge_buggy */
|
|
#include "pci.h"
|
|
#include "pci.h"
|
|
|
|
|
|
-int isa_dma_bridge_buggy;
|
|
|
|
-EXPORT_SYMBOL(isa_dma_bridge_buggy);
|
|
|
|
-int pci_pci_problems;
|
|
|
|
-EXPORT_SYMBOL(pci_pci_problems);
|
|
|
|
-
|
|
|
|
-#ifdef CONFIG_PCI_QUIRKS
|
|
|
|
/*
|
|
/*
|
|
* This quirk function disables memory decoding and releases memory resources
|
|
* This quirk function disables memory decoding and releases memory resources
|
|
* of the device specified by kernel's boot parameter 'pci=resource_alignment='.
|
|
* of the device specified by kernel's boot parameter 'pci=resource_alignment='.
|
|
@@ -2612,6 +2607,7 @@ void pci_fixup_device(enum pci_fixup_pass pass, struct pci_dev *dev)
|
|
}
|
|
}
|
|
pci_do_fixups(dev, start, end);
|
|
pci_do_fixups(dev, start, end);
|
|
}
|
|
}
|
|
|
|
+EXPORT_SYMBOL(pci_fixup_device);
|
|
|
|
|
|
static int __init pci_apply_final_quirks(void)
|
|
static int __init pci_apply_final_quirks(void)
|
|
{
|
|
{
|
|
@@ -2723,9 +2719,3 @@ int pci_dev_specific_reset(struct pci_dev *dev, int probe)
|
|
|
|
|
|
return -ENOTTY;
|
|
return -ENOTTY;
|
|
}
|
|
}
|
|
-
|
|
|
|
-#else
|
|
|
|
-void pci_fixup_device(enum pci_fixup_pass pass, struct pci_dev *dev) {}
|
|
|
|
-int pci_dev_specific_reset(struct pci_dev *dev, int probe) { return -ENOTTY; }
|
|
|
|
-#endif
|
|
|
|
-EXPORT_SYMBOL(pci_fixup_device);
|
|
|