From 8f00b27bc3caf4e4036d6d83ba916b59d065dc30 Mon Sep 17 00:00:00 2001 From: wpaul Date: Tue, 23 Feb 1999 15:38:25 +0000 Subject: Add support for still more cheapo 10/100 cards: Delta Electronics and Addtron appear to have their own VIA Rhine II and RealTek 8139 boards with custom PCI vendor and device IDs. This commit updates the PCI vendor and device lists in the vr and rl drivers so that we can probe the additional devices. Found by: nosing around the PCI vendor and device code list at: http://www.halcyon.com/scripts/jboemler/pci/pcicode --- sys/pci/if_vr.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'sys/pci/if_vr.c') diff --git a/sys/pci/if_vr.c b/sys/pci/if_vr.c index 9d04b52..7c4c1d8 100644 --- a/sys/pci/if_vr.c +++ b/sys/pci/if_vr.c @@ -29,7 +29,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_vr.c,v 1.7 1999/01/10 18:51:49 wpaul Exp $ + * $Id: if_vr.c,v 1.18 1999/02/23 06:47:52 wpaul Exp $ */ /* @@ -97,7 +97,7 @@ #ifndef lint static const char rcsid[] = - "$Id: if_vr.c,v 1.7 1999/01/10 18:51:49 wpaul Exp $"; + "$Id: if_vr.c,v 1.18 1999/02/23 06:47:52 wpaul Exp $"; #endif /* @@ -108,6 +108,10 @@ static struct vr_type vr_devs[] = { "VIA VT3043 Rhine I 10/100BaseTX" }, { VIA_VENDORID, VIA_DEVICEID_RHINE_II, "VIA VT86C100A Rhine II 10/100BaseTX" }, + { DELTA_VENDORID, DELTA_DEVICEID_RHINE_II, + "Delta Electronics Rhine II 10/100BaseTX" }, + { ADDTRON_VENDORID, ADDTRON_DEVICEID_RHINE_II, + "Addtron Technology Rhine II 10/100BaseTX" }, { 0, 0, NULL } }; -- cgit v1.1