mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-21 12:05:23 +00:00
f9a0485c99
These patches have been added in linux v6.12 release. Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
39 lines
1.4 KiB
Diff
39 lines
1.4 KiB
Diff
From 8df9439389a44fb2cc4ef695e08d6a8870b1616c Mon Sep 17 00:00:00 2001
|
|
From: Colin Ian King <colin.i.king@gmail.com>
|
|
Date: Mon, 9 Sep 2024 15:00:21 +0100
|
|
Subject: [PATCH 44/47] r8169: Fix spelling mistake: "tx_underun" ->
|
|
"tx_underrun"
|
|
|
|
There is a spelling mistake in the struct field tx_underun, rename
|
|
it to tx_underrun.
|
|
|
|
Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
|
|
Reviewed-by: Simon Horman <horms@kernel.org>
|
|
Reviewed-by: Heiner Kallweit <hkallweit1@gmail.com>
|
|
Link: https://patch.msgid.link/20240909140021.64884-1-colin.i.king@gmail.com
|
|
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
|
|
---
|
|
drivers/net/ethernet/realtek/r8169_main.c | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
--- a/drivers/net/ethernet/realtek/r8169_main.c
|
|
+++ b/drivers/net/ethernet/realtek/r8169_main.c
|
|
@@ -578,7 +578,7 @@ struct rtl8169_counters {
|
|
__le64 rx_broadcast;
|
|
__le32 rx_multicast;
|
|
__le16 tx_aborted;
|
|
- __le16 tx_underun;
|
|
+ __le16 tx_underrun;
|
|
};
|
|
|
|
struct rtl8169_tc_offsets {
|
|
@@ -1843,7 +1843,7 @@ static void rtl8169_get_ethtool_stats(st
|
|
data[9] = le64_to_cpu(counters->rx_broadcast);
|
|
data[10] = le32_to_cpu(counters->rx_multicast);
|
|
data[11] = le16_to_cpu(counters->tx_aborted);
|
|
- data[12] = le16_to_cpu(counters->tx_underun);
|
|
+ data[12] = le16_to_cpu(counters->tx_underrun);
|
|
}
|
|
|
|
static void rtl8169_get_strings(struct net_device *dev, u32 stringset, u8 *data)
|