diff options
author | kuriyama <kuriyama@FreeBSD.org> | 2000-08-25 08:30:51 +0000 |
---|---|---|
committer | kuriyama <kuriyama@FreeBSD.org> | 2000-08-25 08:30:51 +0000 |
commit | 95568e446905af39c622ae164aebe8c646e189c7 (patch) | |
tree | 30f21fd1128756907b1266602cbac6b2313b8fa7 /sys/pci | |
parent | a183fa84580e2790c82fa7757642f305d2f95df2 (diff) | |
download | FreeBSD-src-95568e446905af39c622ae164aebe8c646e189c7.zip FreeBSD-src-95568e446905af39c622ae164aebe8c646e189c7.tar.gz |
Correct messages for VIA Apollo Pro133A.
Diffstat (limited to 'sys/pci')
-rw-r--r-- | sys/pci/pcisupport.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/pci/pcisupport.c b/sys/pci/pcisupport.c index 795fc18..e0a72e1 100644 --- a/sys/pci/pcisupport.c +++ b/sys/pci/pcisupport.c @@ -698,7 +698,7 @@ pcib_match(device_t dev) /* VIA Technologies -- vendor 0x1106 */ case 0x85981106: - return ("VIA 82C598MVP (Apollo MVP3) PCI-PCI (AGP) bridge"); + return ("VIA 82C598MVP/82C694X (Apollo MVP3/Pro133A) PCI-PCI (AGP) bridge"); /* AcerLabs -- vendor 0x10b9 */ /* Funny : The datasheet told me vendor id is "10b8",sub-vendor */ @@ -1221,8 +1221,12 @@ pci_chip_match(device_t dev) /* XXX need info on the MVP3 -- any takers? */ case 0x05981106: return ("VIA 82C598MVP (Apollo MVP3) host bridge"); + case 0x06911106: + return ("VIA 82C691/693A/694X (Apollo Pro133A) host bridge"); case 0x30401106: return ("VIA 82C586B ACPI interface"); + case 0x30501106: + return ("VIA 82C596B ACPI interface"); case 0x30571106: return ("VIA 82C686 ACPI interface"); case 0x30581106: |