From 5bb4174d2f85d710569a0e422c7d3f683eefa49f Mon Sep 17 00:00:00 2001 From: Theo de Raadt Date: Sun, 15 Feb 1998 01:49:59 +0000 Subject: new pci ethernet card --- sys/dev/isa/if_ed.c | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) (limited to 'sys/dev/isa') diff --git a/sys/dev/isa/if_ed.c b/sys/dev/isa/if_ed.c index 4d0a8bc2396..ba4d9dc7cf9 100644 --- a/sys/dev/isa/if_ed.c +++ b/sys/dev/isa/if_ed.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_ed.c,v 1.33 1997/10/06 20:53:03 mickey Exp $ */ +/* $OpenBSD: if_ed.c,v 1.34 1998/02/15 01:49:58 deraadt Exp $ */ /* $NetBSD: if_ed.c,v 1.105 1996/10/21 22:40:45 thorpej Exp $ */ /* @@ -373,7 +373,6 @@ ed_pcmcia_detach(self) #include #include -#define PCI_PRODUCT_NE2000 0x8029 #define PCI_CBIO 0x10 /* Configuration Base IO Address */ int ed_pci_match __P((struct device *, void *, void *)); @@ -391,10 +390,15 @@ ed_pci_match(parent, match, aux) struct pci_attach_args *pa = aux; /* We don't check the vendor here since many make NE2000 clones */ - if (PCI_PRODUCT(pa->pa_id) != PCI_PRODUCT_NE2000) - return (0); + if (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_REALTEK && + PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_REALTEK_RT8029) + return (1); - return (1); + if (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_WINBOND && + PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_WINBOND_W89C940F) + return (1); + + return (0); } /* -- cgit v1.2.3