diff options
author | ats <ats@FreeBSD.org> | 1996-01-09 23:07:32 +0000 |
---|---|---|
committer | ats <ats@FreeBSD.org> | 1996-01-09 23:07:32 +0000 |
commit | ecb5802a841d3c4529dee07dbd581ea0d13b967b (patch) | |
tree | 452abbf6a6f3167c6a24f55f7a1218945fc8d060 | |
parent | c5c2c48f68bd82ef32ca570c841b384deae1259b (diff) | |
download | FreeBSD-src-ecb5802a841d3c4529dee07dbd581ea0d13b967b.zip FreeBSD-src-ecb5802a841d3c4529dee07dbd581ea0d13b967b.tar.gz |
Add the pci-numbers for the 3c595 10/100Mb card to the driver.
-rw-r--r-- | sys/pci/if_vx.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/pci/if_vx.c b/sys/pci/if_vx.c index 301e444..7fc63c3 100644 --- a/sys/pci/if_vx.c +++ b/sys/pci/if_vx.c @@ -172,6 +172,8 @@ vx_pci_probe( { if(device_id == 0x590010b7ul) return "3Com 3c590 EtherLink III PCI"; + if(device_id == 0x595010b7ul) + return "3Com 3c595 EtherLink III PCI"; return NULL; } |