diff options
author | dm <dm@cvs.openbsd.org> | 1996-02-13 17:57:26 +0000 |
---|---|---|
committer | dm <dm@cvs.openbsd.org> | 1996-02-13 17:57:26 +0000 |
commit | 266d72a9421fe6c848887e285136c281bf0750fb (patch) | |
tree | fe3fb7cb560c0d49271ca17f4468874a9ab8572c /sys/dev/isa/if_ep.c | |
parent | a04500537b8aa778da253e85465acf7570b52a11 (diff) |
Recognize 3c595 (same as 3c590, according to FreeBSD if_vx)
Diffstat (limited to 'sys/dev/isa/if_ep.c')
-rw-r--r-- | sys/dev/isa/if_ep.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/isa/if_ep.c b/sys/dev/isa/if_ep.c index 4ee4dcc4135..673e0938875 100644 --- a/sys/dev/isa/if_ep.c +++ b/sys/dev/isa/if_ep.c @@ -331,7 +331,8 @@ epprobe(parent, match, aux) struct pci_attach_args *pa = (struct pci_attach_args *) aux; if (PCI_VENDORID(pa->pa_id) != PCI_VENDOR_3COM || - PCI_CHIPID(pa->pa_id) != PCI_PRODUCT_3COM_3C590) + (PCI_CHIPID(pa->pa_id) != PCI_PRODUCT_3COM_3C590 + && PCI_CHIPID(pa->pa_id) != PCI_PRODUCT_3COM_3C595)) return 0; if (nepcards >= MAXEPCARDS) |