diff options
| author | Bill Paul <wpaul@FreeBSD.org> | 1998-08-16 17:14:59 +0000 |
|---|---|---|
| committer | Bill Paul <wpaul@FreeBSD.org> | 1998-08-16 17:14:59 +0000 |
| commit | e30938ce3ae692ea90225b7c76fa08d292d8a6bf (patch) | |
| tree | 5606c92fdfcb307cbda3f1e6e61199ccc3ab0cb3 /sys/dev/vx | |
| parent | d08b9c139f359b8a9a0c8db1cc53b4490b03688c (diff) | |
Notes
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 bd47856c7ffd..f4e98ac0a3ff 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; } |
