summaryrefslogtreecommitdiffstats
path: root/sys/pci/if_vx_pci.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/pci/if_vx_pci.c')
-rw-r--r--sys/pci/if_vx_pci.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/sys/pci/if_vx_pci.c b/sys/pci/if_vx_pci.c
index bd47856..f4e98ac 100644
--- a/sys/pci/if_vx_pci.c
+++ b/sys/pci/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;
}
OpenPOWER on IntegriCloud