diff options
Diffstat (limited to 'arch/mips/mti-malta/malta-pci.c')
-rw-r--r-- | arch/mips/mti-malta/malta-pci.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/arch/mips/mti-malta/malta-pci.c b/arch/mips/mti-malta/malta-pci.c index 284dea54faf5..2147cb34e705 100644 --- a/arch/mips/mti-malta/malta-pci.c +++ b/arch/mips/mti-malta/malta-pci.c | |||
@@ -252,16 +252,3 @@ void __init mips_pcibios_init(void) | |||
252 | 252 | ||
253 | register_pci_controller(controller); | 253 | register_pci_controller(controller); |
254 | } | 254 | } |
255 | |||
256 | /* Enable PCI 2.1 compatibility in PIIX4 */ | ||
257 | static void __devinit quirk_dlcsetup(struct pci_dev *dev) | ||
258 | { | ||
259 | u8 odlc, ndlc; | ||
260 | (void) pci_read_config_byte(dev, 0x82, &odlc); | ||
261 | /* Enable passive releases and delayed transaction */ | ||
262 | ndlc = odlc | 7; | ||
263 | (void) pci_write_config_byte(dev, 0x82, ndlc); | ||
264 | } | ||
265 | |||
266 | DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82371AB_0, | ||
267 | quirk_dlcsetup); | ||