The serverworks OSB4 pci->isa bridge has the same mapping register at

offset 0x90 for the SMBus device as the PIIX4.
This commit is contained in:
Peter Wemm 2001-03-15 06:51:45 +00:00
parent 50e2347e68
commit 3e481a771a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=74284

View file

@ -174,10 +174,10 @@ struct pci_quirk {
}; };
struct pci_quirk pci_quirks[] = { 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 }, { 0x71138086, PCI_QUIRK_MAP_REG, 0x90, 0 },
/* As does the Serverworks OSB4 (the SMBus mapping register) */
{ 0x02001166, PCI_QUIRK_MAP_REG, 0x90, 0 },
{ 0 } { 0 }
}; };