Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 319592
b: refs/heads/master
c: 497e5ff
h: refs/heads/master
v: v3
  • Loading branch information
Ralf Baechle committed Jul 23, 2012
1 parent 1aa10cd commit 76b927f
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: f7257d38ebb1bd3b8f80662c67ec7d502ac67421
refs/heads/master: 497e5ff03f58583ada469db8a1aa34eced9dd63e
14 changes: 14 additions & 0 deletions trunk/arch/mips/pci/fixup-malta.c
Original file line number Diff line number Diff line change
Expand Up @@ -101,3 +101,17 @@ static void __devinit malta_piix_func1_fixup(struct pci_dev *pdev)

DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82371AB,
malta_piix_func1_fixup);

/* Enable PCI 2.1 compatibility in PIIX4 */
static void __devinit quirk_dlcsetup(struct pci_dev *dev)
{
u8 odlc, ndlc;

(void) pci_read_config_byte(dev, 0x82, &odlc);
/* Enable passive releases and delayed transaction */
ndlc = odlc | 7;
(void) pci_write_config_byte(dev, 0x82, ndlc);
}

DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82371AB_0,
quirk_dlcsetup);

0 comments on commit 76b927f

Please sign in to comment.