summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorMatthew Wilcox <matthew@wil.cx>2010-03-24 07:11:01 -0600
committerGreg Kroah-Hartman <gregkh@suse.de>2010-07-05 11:15:46 -0700
commite58a09a594492db2dffb2aecc26d0d4c7a169ade (patch)
treea7a0f231fcac3a2dacb1cef655b3103f21b67f2c /drivers
parent6bf0eb89c2aa017d5b9d5a859e53cf9c39fd92c3 (diff)
downloadkernel-crypto-e58a09a594492db2dffb2aecc26d0d4c7a169ade.tar.gz
kernel-crypto-e58a09a594492db2dffb2aecc26d0d4c7a169ade.tar.xz
kernel-crypto-e58a09a594492db2dffb2aecc26d0d4c7a169ade.zip
PCI quirk: Disable MSI on VIA K8T890 systems
commit 134b345081534235dbf228b1005c14590e0570ba upstream. Bugzilla 15287 indicates that there's a problem with Message Signalled Interrupts on VIA K8T890 systems. Add a quirk to disable MSI on these systems. Signed-off-by: Matthew Wilcox <willy@linux.intel.com> Tested-by: Jan Kreuzer <kontrollator@gmx.de> Tested-by: lh <jarryson@gmail.com> Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/pci/quirks.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c
index 456c265b1fe..90339979b2e 100644
--- a/drivers/pci/quirks.c
+++ b/drivers/pci/quirks.c
@@ -2113,6 +2113,7 @@ static void __devinit quirk_disable_msi(struct pci_dev *dev)
}
}
DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_8131_BRIDGE, quirk_disable_msi);
+DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_VIA, 0xa238, quirk_disable_msi);
/* Go through the list of Hypertransport capabilities and
* return 1 if a HT MSI capability is found and enabled */