diff options
| author | John Baldwin <jhb@FreeBSD.org> | 2007-01-12 13:33:56 +0000 |
|---|---|---|
| committer | John Baldwin <jhb@FreeBSD.org> | 2007-01-12 13:33:56 +0000 |
| commit | af07bd5661b8450b779ff14d00f7186f62751bba (patch) | |
| tree | 7733f421befd87bea1ce08d39f0aeb73dc14b599 /sys/dev/pci | |
| parent | 779a689bd7a063d4c810ec5ed3bf66fe079e609d (diff) | |
Notes
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 3ae0fa65c658..cb7a2e1ef7b3 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 } }; |
