Commit 4e9c91cf authored by Heiner Kallweit's avatar Heiner Kallweit Committed by Jakub Kicinski

r8169: disable detection of chip version 60

It seems only XID 609 made it to the mass market. Therefore let's
disable detection of the other RTL8125a XID's. If nobody complains
we can remove support for RTL_GIGA_MAC_VER_60 later.
Signed-off-by: default avatarHeiner Kallweit <hkallweit1@gmail.com>
Link: https://lore.kernel.org/r/2cd3df01-5f8b-08dd-6def-3f31a3014bde@gmail.comSigned-off-by: default avatarJakub Kicinski <kuba@kernel.org>
parent 305e95bb
......@@ -1971,8 +1971,11 @@ static enum mac_version rtl8169_get_mac_version(u16 xid, bool gmii)
{ 0x7cf, 0x641, RTL_GIGA_MAC_VER_63 },
/* 8125A family. */
{ 0x7cf, 0x608, RTL_GIGA_MAC_VER_60 },
{ 0x7c8, 0x608, RTL_GIGA_MAC_VER_61 },
{ 0x7cf, 0x609, RTL_GIGA_MAC_VER_61 },
/* It seems only XID 609 made it to the mass market.
* { 0x7cf, 0x608, RTL_GIGA_MAC_VER_60 },
* { 0x7c8, 0x608, RTL_GIGA_MAC_VER_61 },
*/
/* RTL8117 */
{ 0x7cf, 0x54b, RTL_GIGA_MAC_VER_53 },
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment