Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-3]: src/sys/dev Pull up following revision(s) (requested by rpaul...



details:   https://anonhg.NetBSD.org/src/rev/0b6b7001a9ee
branches:  netbsd-3
changeset: 577671:0b6b7001a9ee
user:      riz <riz%NetBSD.org@localhost>
date:      Thu Dec 29 19:44:18 2005 +0000

description:
Pull up following revision(s) (requested by rpaulo in ticket #1070):
        sys/dev/pci/if_re_pci.c: revision 1.12
        sys/dev/ic/rtl81x9reg.h: revision 1.14
PR/32386: Dawid Szymanski (arhea). Add support for the 8169SB chipset.
>From FreeBSD.

diffstat:

 sys/dev/ic/rtl81x9reg.h |  3 ++-
 sys/dev/pci/if_re_pci.c |  7 +++++--
 2 files changed, 7 insertions(+), 3 deletions(-)

diffs (52 lines):

diff -r ef655414ea38 -r 0b6b7001a9ee sys/dev/ic/rtl81x9reg.h
--- a/sys/dev/ic/rtl81x9reg.h   Thu Dec 29 19:37:20 2005 +0000
+++ b/sys/dev/ic/rtl81x9reg.h   Thu Dec 29 19:44:18 2005 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: rtl81x9reg.h,v 1.11.2.1 2005/04/04 17:23:47 tron Exp $ */
+/*     $NetBSD: rtl81x9reg.h,v 1.11.2.2 2005/12/29 19:44:18 riz Exp $  */
 
 /*
  * Copyright (c) 1997, 1998
@@ -148,6 +148,7 @@
 
 #define RTK_HWREV_8169         0x00000000
 #define RTK_HWREV_8169S                0x04000000
+#define RTK_HWREV_8169SB       0x10000000
 #define RTK_HWREV_8110S                0x00800000
 #define RTK_HWREV_8139         0x60000000
 #define RTK_HWREV_8139A                0x70000000
diff -r ef655414ea38 -r 0b6b7001a9ee sys/dev/pci/if_re_pci.c
--- a/sys/dev/pci/if_re_pci.c   Thu Dec 29 19:37:20 2005 +0000
+++ b/sys/dev/pci/if_re_pci.c   Thu Dec 29 19:44:18 2005 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: if_re_pci.c,v 1.8.2.3 2005/11/24 22:19:11 tron Exp $   */
+/*     $NetBSD: if_re_pci.c,v 1.8.2.4 2005/12/29 19:44:18 riz Exp $    */
 
 /*
  * Copyright (c) 1997, 1998-2003
@@ -41,7 +41,7 @@
  * Senior Networking Software Engineer
  * Wind River Systems
  *
- * NetBSD bus-specific frontends for written by
+ * Netbsd bus-specific frontends for written by
  * Jonathan Stone <jonathan%netbsd.org@localhost>
  */
 
@@ -106,6 +106,8 @@
                "RealTek 8169 Gigabit Ethernet" },
        { PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RT8169, RTK_HWREV_8169S,
                "RealTek 8169S Single-chip Gigabit Ethernet" },
+       { PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RT8169, RTK_HWREV_8169SB,
+               "RealTek 8169SB Single-chip Gigabit Ethernet" },
        { PCI_VENDOR_COREGA, PCI_PRODUCT_COREGA_LAPCIGT, RTK_HWREV_8169S,
                "Corega CG-LAPCIGT Gigabit Ethernet" },
        { PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RT8169, RTK_HWREV_8110S,
@@ -130,6 +132,7 @@
        { RTK_HWREV_8139CPLUS, RTK_8139CPLUS, "C+"},
        { RTK_HWREV_8169, RTK_8169, "8169"},
        { RTK_HWREV_8169S, RTK_8169, "8169S"},
+       { RTK_HWREV_8169SB, RTK_8169, "8169SB"},
        { RTK_HWREV_8110S, RTK_8169, "8110S"},
        { RTK_HWREV_8100, RTK_8139, "8100"},
        { RTK_HWREV_8101, RTK_8139, "8101"},



Home | Main Index | Thread Index | Old Index