diff options
author | jhb <jhb@FreeBSD.org> | 2007-01-16 19:44:45 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2007-01-16 19:44:45 +0000 |
commit | 4193a14b0b2f6a45680e9fc4d0cb4c6776223b3b (patch) | |
tree | a4294ba2fe0c92d528dcfbdc86b6ea4bbaa49ca1 /sys/dev/pci | |
parent | be61542c54e5e44738e2875d8cd3cf0e1f29268e (diff) | |
download | FreeBSD-src-4193a14b0b2f6a45680e9fc4d0cb4c6776223b3b.zip FreeBSD-src-4193a14b0b2f6a45680e9fc4d0cb4c6776223b3b.tar.gz |
Disable MSI for the Intel 845 and 865 chipsets and update comment for
E7210 to note it is the same devid as the 875 chipset.
Diffstat (limited to 'sys/dev/pci')
-rw-r--r-- | sys/dev/pci/pci.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/pci/pci.c b/sys/dev/pci/pci.c index 3b03313..dc930c1 100644 --- a/sys/dev/pci/pci.c +++ b/sys/dev/pci/pci.c @@ -186,11 +186,13 @@ struct pci_quirk pci_quirks[] = { /* * MSI doesn't work on earlier Intel chipsets including - * E7500, E7501, E7505, E7210, and 855. + * E7500, E7501, E7505, 845, 865, 875/E7210, and 855. */ { 0x25408086, PCI_QUIRK_DISABLE_MSI, 0, 0 }, { 0x254c8086, PCI_QUIRK_DISABLE_MSI, 0, 0 }, { 0x25508086, PCI_QUIRK_DISABLE_MSI, 0, 0 }, + { 0x25608086, PCI_QUIRK_DISABLE_MSI, 0, 0 }, + { 0x25708086, PCI_QUIRK_DISABLE_MSI, 0, 0 }, { 0x25788086, PCI_QUIRK_DISABLE_MSI, 0, 0 }, { 0x35808086, PCI_QUIRK_DISABLE_MSI, 0, 0 }, |