diff options
| author | Peter Wemm <peter@FreeBSD.org> | 2001-03-15 06:51:45 +0000 |
|---|---|---|
| committer | Peter Wemm <peter@FreeBSD.org> | 2001-03-15 06:51:45 +0000 |
| commit | 3e481a771a57b8760e86abe04991c76dc440605d (patch) | |
| tree | c08eac23cb5452fdf993d2383d077068ead3d861 | |
| parent | 50e2347e6809a14e027d629f93a94a99e665de2e (diff) | |
Notes
| -rw-r--r-- | sys/dev/pci/pci.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/pci/pci.c b/sys/dev/pci/pci.c index 76bc808d14c8..3da4d2996265 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 } }; |
