diff options
author | alc <alc@FreeBSD.org> | 2000-10-14 23:16:42 +0000 |
---|---|---|
committer | alc <alc@FreeBSD.org> | 2000-10-14 23:16:42 +0000 |
commit | 55d307fe00ad0297edaa06c48a145418ca0067bb (patch) | |
tree | d4f48bb2abfb8807ef3d8f98901197fc1a56cde5 /sys/pci | |
parent | 33cf0a74b86756a086c4142d172544683cdfe9d3 (diff) | |
download | FreeBSD-src-55d307fe00ad0297edaa06c48a145418ca0067bb.zip FreeBSD-src-55d307fe00ad0297edaa06c48a145418ca0067bb.tar.gz |
Recognize the ServerWorks IB6566 south bridge.
Diffstat (limited to 'sys/pci')
-rw-r--r-- | sys/pci/pcisupport.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/pci/pcisupport.c b/sys/pci/pcisupport.c index d83ea3b..3f1d33e 100644 --- a/sys/pci/pcisupport.c +++ b/sys/pci/pcisupport.c @@ -954,6 +954,10 @@ isab_match(device_t dev) if (pci_get_class(dev) == PCIC_BRIDGE && pci_get_subclass(dev) == PCIS_BRIDGE_ISA) return ("Cypress 82C693 PCI-ISA bridge"); + + /* ServerWorks -- vendor 0x1166 */ + case 0x02001166: + return ("ServerWorks IB6566 PCI to ISA bridge"); } if (pci_get_class(dev) == PCIC_BRIDGE |