mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-04 23:19:00 +00:00
Ignore tulip chips on LanMedia WAN cards.
This commit is contained in:
parent
9547f4e793
commit
d4032b0b10
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=59629
@ -5085,6 +5085,13 @@ tulip_pci_probe(device_t dev)
|
||||
if (pci_get_vendor(dev) != DEC_VENDORID)
|
||||
return ENXIO;
|
||||
|
||||
/*
|
||||
* Some LanMedia WAN cards use the Tulip chip, but they have
|
||||
* their own driver, and we should not recognize them
|
||||
*/
|
||||
if (pci_get_subvendor(dev) == 0x1376)
|
||||
return ENXIO;
|
||||
|
||||
switch (pci_get_device(dev)) {
|
||||
case CHIPID_21040:
|
||||
name = "Digital 21040 Ethernet";
|
||||
|
@ -5085,6 +5085,13 @@ tulip_pci_probe(device_t dev)
|
||||
if (pci_get_vendor(dev) != DEC_VENDORID)
|
||||
return ENXIO;
|
||||
|
||||
/*
|
||||
* Some LanMedia WAN cards use the Tulip chip, but they have
|
||||
* their own driver, and we should not recognize them
|
||||
*/
|
||||
if (pci_get_subvendor(dev) == 0x1376)
|
||||
return ENXIO;
|
||||
|
||||
switch (pci_get_device(dev)) {
|
||||
case CHIPID_21040:
|
||||
name = "Digital 21040 Ethernet";
|
||||
|
Loading…
Reference in New Issue
Block a user