diff options
| author | cube <cube@NetBSD.org> | 2003-11-28 06:03:09 +0000 |
|---|---|---|
| committer | cube <cube@NetBSD.org> | 2003-11-28 06:03:09 +0000 |
| commit | c5529ef807a009254f03a1ce0774a2b7751bec2e (patch) | |
| tree | 2608430591cfb7ce3edeee07014fecf195cca8ec /sys/dev | |
| parent | 5146829d442ab1cd6a5ea51cb4350c56f7426d35 (diff) | |
Add support for the 3com OfficeConnect 10/100B card, which has an ADMtek
AN985 controller, handled by tlp(4).
From Mike M. Volokhov <mishka AT terabyte DOT com DOT ua> in
current-users.
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/pci/if_tlp_pci.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sys/dev/pci/if_tlp_pci.c b/sys/dev/pci/if_tlp_pci.c index cb99690d10e..fd726e86593 100644 --- a/sys/dev/pci/if_tlp_pci.c +++ b/sys/dev/pci/if_tlp_pci.c @@ -1,4 +1,4 @@ -/* $NetBSD: if_tlp_pci.c,v 1.74 2003/11/03 03:05:25 ichiro Exp $ */ +/* $NetBSD: if_tlp_pci.c,v 1.75 2003/11/28 06:03:09 cube Exp $ */ /*- * Copyright (c) 1998, 1999, 2000, 2002 The NetBSD Foundation, Inc. @@ -43,7 +43,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: if_tlp_pci.c,v 1.74 2003/11/03 03:05:25 ichiro Exp $"); +__KERNEL_RCSID(0, "$NetBSD: if_tlp_pci.c,v 1.75 2003/11/28 06:03:09 cube Exp $"); #include <sys/param.h> #include <sys/systm.h> @@ -163,6 +163,9 @@ const struct tulip_pci_product { { PCI_VENDOR_ACCTON, PCI_PRODUCT_ACCTON_EN2242, TULIP_CHIP_AN985 }, + { PCI_VENDOR_3COM, PCI_PRODUCT_3COM_3C910SOHOB, + TULIP_CHIP_AN985 }, + #if 0 { PCI_VENDOR_ASIX, PCI_PRODUCT_ASIX_AX88140A, TULIP_CHIP_AX88140 }, |
