svn commit: r366649 - in stable/12/sys/dev: re rl
Mark Johnston
markj at FreeBSD.org
Mon Oct 12 16:44:06 UTC 2020
Author: markj
Date: Mon Oct 12 16:44:05 2020
New Revision: 366649
URL: https://svnweb.freebsd.org/changeset/base/366649
Log:
MFC r366464:
re(4): Add a 8168-compatible device ID
PR: 250037
Modified:
stable/12/sys/dev/re/if_re.c
stable/12/sys/dev/rl/if_rlreg.h
Directory Properties:
stable/12/ (props changed)
Modified: stable/12/sys/dev/re/if_re.c
==============================================================================
--- stable/12/sys/dev/re/if_re.c Mon Oct 12 12:41:10 2020 (r366648)
+++ stable/12/sys/dev/re/if_re.c Mon Oct 12 16:44:05 2020 (r366649)
@@ -187,6 +187,8 @@ static const struct rl_type re_devs[] = {
"RealTek 810xE PCIe 10/100baseTX" },
{ RT_VENDORID, RT_DEVICEID_8168, 0,
"RealTek 8168/8111 B/C/CP/D/DP/E/F/G PCIe Gigabit Ethernet" },
+ { RT_VENDORID, RT_DEVICEID_8161, 0,
+ "RealTek 8168 Gigabit Ethernet" },
{ NCUBE_VENDORID, RT_DEVICEID_8168, 0,
"TP-Link TG-3468 v2 (RTL8168) Gigabit Ethernet" },
{ RT_VENDORID, RT_DEVICEID_8169, 0,
Modified: stable/12/sys/dev/rl/if_rlreg.h
==============================================================================
--- stable/12/sys/dev/rl/if_rlreg.h Mon Oct 12 12:41:10 2020 (r366648)
+++ stable/12/sys/dev/rl/if_rlreg.h Mon Oct 12 16:44:05 2020 (r366649)
@@ -999,6 +999,7 @@ struct rl_softc {
#define RT_DEVICEID_8138 0x8138
#define RT_DEVICEID_8139 0x8139
#define RT_DEVICEID_8169SC 0x8167
+#define RT_DEVICEID_8161 0x8161
#define RT_DEVICEID_8168 0x8168
#define RT_DEVICEID_8169 0x8169
#define RT_DEVICEID_8100 0x8100
More information about the svn-src-all
mailing list