summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>2001-03-15 06:51:45 +0000
committerpeter <peter@FreeBSD.org>2001-03-15 06:51:45 +0000
commit8f6845da0b137b7242d58c7e5ee88b865d10a53e (patch)
tree96c6928b1068488eb5af7aab44dd1bf8473808a4 /sys
parentd7e8a2bd6694fef706e0403d2b689ee7fb515848 (diff)
downloadFreeBSD-src-8f6845da0b137b7242d58c7e5ee88b865d10a53e.zip
FreeBSD-src-8f6845da0b137b7242d58c7e5ee88b865d10a53e.tar.gz
The serverworks OSB4 pci->isa bridge has the same mapping register at
offset 0x90 for the SMBus device as the PIIX4.
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/pci/pci.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/pci/pci.c b/sys/dev/pci/pci.c
index 76bc808..3da4d29 100644
--- a/sys/dev/pci/pci.c
+++ b/sys/dev/pci/pci.c
@@ -174,10 +174,10 @@ struct pci_quirk {
};
struct pci_quirk pci_quirks[] = {
- /*
- * The Intel 82371AB has a map register at offset 0x90.
- */
+ /* The Intel 82371AB has a map register at offset 0x90. */
{ 0x71138086, PCI_QUIRK_MAP_REG, 0x90, 0 },
+ /* As does the Serverworks OSB4 (the SMBus mapping register) */
+ { 0x02001166, PCI_QUIRK_MAP_REG, 0x90, 0 },
{ 0 }
};
OpenPOWER on IntegriCloud