PR/34933: Sami Kantoluoto: RealTek 8168B found from Asus P5B motherboard

is not recognized
This commit is contained in:
christos 2006-10-28 23:18:34 +00:00
parent 05ad853be0
commit f26b055a0e
2 changed files with 6 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: rtl81x9reg.h,v 1.17 2006/10/20 16:31:08 tsutsui Exp $ */
/* $NetBSD: rtl81x9reg.h,v 1.18 2006/10/28 23:18:34 christos Exp $ */
/*
* Copyright (c) 1997, 1998
@ -161,6 +161,7 @@
#define RTK_HWREV_8101 0x74c00000
#define RTK_HWREV_8100 0x78800000
#define RTK_HWREV_8168 0x30000000
#define RTK_HWREV_8168_2 0x38000000
#define RTK_TXDMA_16BYTES 0x00000000
#define RTK_TXDMA_32BYTES 0x00000100

View File

@ -1,4 +1,4 @@
/* $NetBSD: if_re_pci.c,v 1.15 2006/10/27 09:57:26 tsutsui Exp $ */
/* $NetBSD: if_re_pci.c,v 1.16 2006/10/28 23:18:35 christos Exp $ */
/*
* Copyright (c) 1997, 1998-2003
@ -104,6 +104,8 @@ static const struct rtk_type re_devs[] = {
"RealTek 8139C+ 10/100BaseTX" },
{ PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RT8168, RTK_HWREV_8168,
"RealTek 8168B/8111B Gigabit Ethernet" },
{ PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RT8168, RTK_HWREV_8168_2,
"RealTek 8168B/8111B Gigabit Ethernet" },
{ PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RT8169, RTK_HWREV_8169,
"RealTek 8169 Gigabit Ethernet" },
{ PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RT8169, RTK_HWREV_8169S,
@ -133,6 +135,7 @@ static const struct rtk_hwrev re_hwrevs[] = {
{ RTK_HWREV_8139D, RTK_8139, "8139D/8100B/8100C" },
{ RTK_HWREV_8139CPLUS, RTK_8139CPLUS, "C+"},
{ RTK_HWREV_8168, RTK_8169, "8168B/8111B"},
{ RTK_HWREV_8168_2, RTK_8169, "8168B/8111B"},
{ RTK_HWREV_8169, RTK_8169, "8169"},
{ RTK_HWREV_8169S, RTK_8169, "8169S"},
{ RTK_HWREV_8169SB, RTK_8169, "8169SB"},