diff options
author | wpaul <wpaul@FreeBSD.org> | 1998-08-16 17:14:59 +0000 |
---|---|---|
committer | wpaul <wpaul@FreeBSD.org> | 1998-08-16 17:14:59 +0000 |
commit | e55024e4a53d99f1cca7cbfa82af150195394eac (patch) | |
tree | c5a2c2696b265b1ceffd7fd07f873bf58e34ee29 /sys/dev/vx | |
parent | 62d97a08f15747cbfca4ebe9bac6b8ba2f9f1c9f (diff) | |
download | FreeBSD-src-e55024e4a53d99f1cca7cbfa82af150195394eac.zip FreeBSD-src-e55024e4a53d99f1cca7cbfa82af150195394eac.tar.gz |
Import the (Fast) Etherlink XL driver. I'm reasonally confident in its
stability now. ALso modify /sys/conf/files, /sys/i386/conf/GENERIC
and /sys/i386/conf/LINT to add entries for the XL driver. Deactivate
support for the XL adapters in the vortex driver. LAstly, add a man
page.
(Also added an MLINKS entry for the ThunderLAN man page which I forgot
previously.)
Diffstat (limited to 'sys/dev/vx')
-rw-r--r-- | sys/dev/vx/if_vx_pci.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sys/dev/vx/if_vx_pci.c b/sys/dev/vx/if_vx_pci.c index bd47856..f4e98ac 100644 --- a/sys/dev/vx/if_vx_pci.c +++ b/sys/dev/vx/if_vx_pci.c @@ -69,10 +69,17 @@ vx_pci_probe( if(device_id == 0x595010b7ul || device_id == 0x595110b7ul || device_id == 0x595210b7ul) return "3COM 3C595 Fast Etherlink III PCI"; + /* + * The (Fast) Etherlink XL adapters are now supported by + * the xl driver, which uses bus master DMA and is much + * faster. (And which also supports the 3c905B. + */ +#ifdef VORTEX_ETHERLINK_XL if(device_id == 0x900010b7ul || device_id == 0x900110b7ul) return "3COM 3C900 Etherlink XL PCI"; if(device_id == 0x905010b7ul || device_id == 0x905110b7ul) return "3COM 3C905 Fast Etherlink XL PCI"; +#endif return NULL; } |