mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-22 06:57:57 +00:00
27b816d545
- improve RTL8411b phy-down fixup - remove not needed check in rtl_fw_write_firmware - remove multicast filter limit - improve handling task scheduling - simplify EEE handling - simplify code by using core-provided pcpu stats allocation - add generic rtl_set_eee_txidle_timer function - support setting the EEE tx idle timer on RTL8168h - add support for returning tx_lpi_timer in ethtool get_eee - annotate writes on dev->mtu from ndo_change_mtu() - disable interrupt source RxOverflow - remove detection of chip version 11 (early RTL8168b) Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
33 lines
1.2 KiB
Diff
33 lines
1.2 KiB
Diff
From 982300c115d229565d7af8e8b38aa1ee7bb1f5bd Mon Sep 17 00:00:00 2001
|
|
From: Heiner Kallweit <hkallweit1@gmail.com>
|
|
Date: Mon, 27 May 2024 21:20:16 +0200
|
|
Subject: [PATCH] r8169: remove detection of chip version 11 (early
|
|
RTL8168b)
|
|
|
|
This early RTL8168b version was the first PCIe chip version, and it's
|
|
quite quirky. Last sign of life is from more than 15 yrs ago.
|
|
Let's remove detection of this chip version, we'll see whether anybody
|
|
complains. If not, support for this chip version can be removed a few
|
|
kernel versions later.
|
|
|
|
Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
|
|
Link: https://lore.kernel.org/r/875cdcf4-843c-420a-ad5d-417447b68572@gmail.com
|
|
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
|
|
---
|
|
drivers/net/ethernet/realtek/r8169_main.c | 4 +++-
|
|
1 file changed, 3 insertions(+), 1 deletion(-)
|
|
|
|
--- a/drivers/net/ethernet/realtek/r8169_main.c
|
|
+++ b/drivers/net/ethernet/realtek/r8169_main.c
|
|
@@ -2275,7 +2275,9 @@ static enum mac_version rtl8169_get_mac_
|
|
|
|
/* 8168B family. */
|
|
{ 0x7c8, 0x380, RTL_GIGA_MAC_VER_17 },
|
|
- { 0x7c8, 0x300, RTL_GIGA_MAC_VER_11 },
|
|
+ /* This one is very old and rare, let's see if anybody complains.
|
|
+ * { 0x7c8, 0x300, RTL_GIGA_MAC_VER_11 },
|
|
+ */
|
|
|
|
/* 8101 family. */
|
|
{ 0x7c8, 0x448, RTL_GIGA_MAC_VER_39 },
|