diff options
author | jhb <jhb@FreeBSD.org> | 2007-01-12 13:33:56 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2007-01-12 13:33:56 +0000 |
commit | 80c43bc68bbcfdb98c932aa8b59f81f7eb3f7e10 (patch) | |
tree | 7733f421befd87bea1ce08d39f0aeb73dc14b599 /sys/dev/pci | |
parent | 751716e05082eecdf3a7767ec11dabf0062f9776 (diff) | |
download | FreeBSD-src-80c43bc68bbcfdb98c932aa8b59f81f7eb3f7e10.zip FreeBSD-src-80c43bc68bbcfdb98c932aa8b59f81f7eb3f7e10.tar.gz |
- Condense the comment for Intel chipset MSI blacklist entries.
- Blacklist the E7210.
PR: kern/105768 (2)
Reported by: marcus (2)
Diffstat (limited to 'sys/dev/pci')
-rw-r--r-- | sys/dev/pci/pci.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/sys/dev/pci/pci.c b/sys/dev/pci/pci.c index 3ae0fa6..cb7a2e1 100644 --- a/sys/dev/pci/pci.c +++ b/sys/dev/pci/pci.c @@ -178,16 +178,12 @@ struct pci_quirk pci_quirks[] = { { 0x02001166, PCI_QUIRK_MAP_REG, 0x90, 0 }, /* - * MSI doesn't work with the Intel E7501 chipset, at least on - * the Tyan 2721 motherboard. + * MSI doesn't work on earlier Intel chipsets including the + * E7501, E7505, and the E7210. */ { 0x254c8086, PCI_QUIRK_DISABLE_MSI, 0, 0 }, - - /* - * MSI doesn't work with the Intel E7505 chipset, at least on - * the Tyan S2665ANF motherboard. - */ { 0x25508086, PCI_QUIRK_DISABLE_MSI, 0, 0 }, + { 0x25788086, PCI_QUIRK_DISABLE_MSI, 0, 0 }, { 0 } }; |