diff options
author | guido <guido@FreeBSD.org> | 1996-12-02 18:38:37 +0000 |
---|---|---|
committer | guido <guido@FreeBSD.org> | 1996-12-02 18:38:37 +0000 |
commit | 817097e46305c0658f968658d99bec92a0bfdd54 (patch) | |
tree | fcf282372820595613385334eb39a1536631fa26 /sys/pci | |
parent | 3e25814edd9230b11efa46f52d039e05475bb409 (diff) | |
download | FreeBSD-src-817097e46305c0658f968658d99bec92a0bfdd54.zip FreeBSD-src-817097e46305c0658f968658d99bec92a0bfdd54.tar.gz |
Some imporvemnets to the vx driver.
1. 'connector_table' is shortened to 'conn_tab'.
2. More reliable connector change code.
3. Display message like "vx0: selected bnc. (link1)"
when the connector changed by link[012].
4. Handle MII properly.
5. Potentially slightly better performance.
6. Fixed a silly typo.
Submitted by: Naoki Hamada <nao@sbl.cl.nec.co.jp>
Diffstat (limited to 'sys/pci')
-rw-r--r-- | sys/pci/if_vx_pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/pci/if_vx_pci.c b/sys/pci/if_vx_pci.c index 008ee5e..5be83dc 100644 --- a/sys/pci/if_vx_pci.c +++ b/sys/pci/if_vx_pci.c @@ -83,7 +83,7 @@ vx_pci_probe( if(device_id == 0x900010b7ul || device_id == 0x900110b7ul) return "3COM 3C900 Etherlink XL PCI"; if(device_id == 0x905010b7ul || device_id == 0x905110b7ul) - return "3COM 3C595 Fast Etherlink XL PCI"; + return "3COM 3C905 Fast Etherlink XL PCI"; return NULL; } |