After the change of r176757 re(4) no longer relys on reading
RL_TXCFG register to identify a device in device probe. Reflect the fact by modifing device description with general ethernet controller family. Note, rl_basetype in struct rl_type is not used and the more detailed information is provided with rl_hwrev structure.
This commit is contained in:
parent
dd6bd66671
commit
9dfcacbe29
@ -170,38 +170,24 @@ TUNABLE_INT("hw.re.msi_disable", &msi_disable);
|
||||
* Various supported device vendors/types and their names.
|
||||
*/
|
||||
static struct rl_type re_devs[] = {
|
||||
{ DLINK_VENDORID, DLINK_DEVICEID_528T, RL_HWREV_8169S,
|
||||
"D-Link DGE-528(T) Gigabit Ethernet Adapter" },
|
||||
{ DLINK_VENDORID, DLINK_DEVICEID_528T, RL_HWREV_8169_8110SB,
|
||||
"D-Link DGE-528(T) Rev.B1 Gigabit Ethernet Adapter" },
|
||||
{ RT_VENDORID, RT_DEVICEID_8139, RL_HWREV_8139CPLUS,
|
||||
"RealTek 8139C+ 10/100BaseTX" },
|
||||
{ RT_VENDORID, RT_DEVICEID_8101E, RL_HWREV_8101E,
|
||||
"RealTek 8101E PCIe 10/100baseTX" },
|
||||
{ RT_VENDORID, RT_DEVICEID_8168, RL_HWREV_8168_SPIN1,
|
||||
"RealTek 8168/8111B PCIe Gigabit Ethernet" },
|
||||
{ RT_VENDORID, RT_DEVICEID_8168, RL_HWREV_8168_SPIN2,
|
||||
"RealTek 8168/8111B PCIe Gigabit Ethernet" },
|
||||
{ RT_VENDORID, RT_DEVICEID_8168, RL_HWREV_8168_SPIN3,
|
||||
"RealTek 8168/8111B PCIe Gigabit Ethernet" },
|
||||
{ RT_VENDORID, RT_DEVICEID_8169, RL_HWREV_8169,
|
||||
"RealTek 8169 Gigabit Ethernet" },
|
||||
{ RT_VENDORID, RT_DEVICEID_8169, RL_HWREV_8169S,
|
||||
"RealTek 8169S Single-chip Gigabit Ethernet" },
|
||||
{ RT_VENDORID, RT_DEVICEID_8169, RL_HWREV_8169_8110SB,
|
||||
"RealTek 8169SB/8110SB Single-chip Gigabit Ethernet" },
|
||||
{ RT_VENDORID, RT_DEVICEID_8169, RL_HWREV_8169_8110SC,
|
||||
"RealTek 8169SC/8110SC Single-chip Gigabit Ethernet" },
|
||||
{ RT_VENDORID, RT_DEVICEID_8169SC, RL_HWREV_8169_8110SC,
|
||||
"RealTek 8169SC/8110SC Single-chip Gigabit Ethernet" },
|
||||
{ RT_VENDORID, RT_DEVICEID_8169, RL_HWREV_8110S,
|
||||
"RealTek 8110S Single-chip Gigabit Ethernet" },
|
||||
{ COREGA_VENDORID, COREGA_DEVICEID_CGLAPCIGT, RL_HWREV_8169S,
|
||||
"Corega CG-LAPCIGT (RTL8169S) Gigabit Ethernet" },
|
||||
{ LINKSYS_VENDORID, LINKSYS_DEVICEID_EG1032, RL_HWREV_8169S,
|
||||
"Linksys EG1032 (RTL8169S) Gigabit Ethernet" },
|
||||
{ USR_VENDORID, USR_DEVICEID_997902, RL_HWREV_8169S,
|
||||
"US Robotics 997902 (RTL8169S) Gigabit Ethernet" }
|
||||
{ DLINK_VENDORID, DLINK_DEVICEID_528T, 0,
|
||||
"D-Link DGE-528(T) Gigabit Ethernet Adapter" },
|
||||
{ RT_VENDORID, RT_DEVICEID_8139, 0,
|
||||
"RealTek 8139C+ 10/100BaseTX" },
|
||||
{ RT_VENDORID, RT_DEVICEID_8101E, 0,
|
||||
"RealTek 8101E PCIe 10/100baseTX" },
|
||||
{ RT_VENDORID, RT_DEVICEID_8168, 0,
|
||||
"RealTek 8168/8168B/8111B PCIe Gigabit Ethernet" },
|
||||
{ RT_VENDORID, RT_DEVICEID_8169, 0,
|
||||
"RealTek 8169/8169S/8169SB/8110S/8110SB Gigabit Ethernet" },
|
||||
{ RT_VENDORID, RT_DEVICEID_8169SC, 0,
|
||||
"RealTek 8169SC/8110SC Single-chip Gigabit Ethernet" },
|
||||
{ COREGA_VENDORID, COREGA_DEVICEID_CGLAPCIGT, 0,
|
||||
"Corega CG-LAPCIGT (RTL8169S) Gigabit Ethernet" },
|
||||
{ LINKSYS_VENDORID, LINKSYS_DEVICEID_EG1032, 0,
|
||||
"Linksys EG1032 (RTL8169S) Gigabit Ethernet" },
|
||||
{ USR_VENDORID, USR_DEVICEID_997902, 0,
|
||||
"US Robotics 997902 (RTL8169S) Gigabit Ethernet" }
|
||||
};
|
||||
|
||||
static struct rl_hwrev re_hwrevs[] = {
|
||||
|
Loading…
x
Reference in New Issue
Block a user