From 4e0ccfb38237ff6ca5fbb471873500d6c3a15338 Mon Sep 17 00:00:00 2001 From: pirzyk Date: Fri, 21 Dec 2001 01:28:59 +0000 Subject: Add support for the Intel 82443MX chipset PR: kern/33032 MFC after: 1 month --- sys/dev/pci/pci.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'sys/dev/pci/pci.c') diff --git a/sys/dev/pci/pci.c b/sys/dev/pci/pci.c index ac812d9..692a483 100644 --- a/sys/dev/pci/pci.c +++ b/sys/dev/pci/pci.c @@ -175,8 +175,9 @@ struct pci_quirk { }; struct pci_quirk pci_quirks[] = { - /* The Intel 82371AB has a map register at offset 0x90. */ + /* The Intel 82371AB and 82443MX has a map register at offset 0x90. */ { 0x71138086, PCI_QUIRK_MAP_REG, 0x90, 0 }, + { 0x719b8086, PCI_QUIRK_MAP_REG, 0x90, 0 }, /* As does the Serverworks OSB4 (the SMBus mapping register) */ { 0x02001166, PCI_QUIRK_MAP_REG, 0x90, 0 }, -- cgit v1.1