r8169: disable detection of chip version 60
authorHeiner Kallweit <hkallweit1@gmail.com>
Wed, 24 Nov 2021 20:44:40 +0000 (21:44 +0100)
committerJakub Kicinski <kuba@kernel.org>
Fri, 26 Nov 2021 03:10:12 +0000 (19:10 -0800)
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: Heiner Kallweit <hkallweit1@gmail.com>
Link: https://lore.kernel.org/r/2cd3df01-5f8b-08dd-6def-3f31a3014bde@gmail.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
drivers/net/ethernet/realtek/r8169_main.c

index 1f6313c..024d2d6 100644 (file)
@@ -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 },