* [PATCH][next] r8169: Fix spelling mistake: "tx_underun" -> "tx_underrun"
@ 2024-09-09 14:00 Colin Ian King
2024-09-10 7:36 ` Simon Horman
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Colin Ian King @ 2024-09-09 14:00 UTC (permalink / raw)
To: Heiner Kallweit, nic_swsd, David S . Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, netdev
Cc: kernel-janitors, linux-kernel
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>
---
drivers/net/ethernet/realtek/r8169_main.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/net/ethernet/realtek/r8169_main.c b/drivers/net/ethernet/realtek/r8169_main.c
index 3cb1c4f5c91a..45ac8befba29 100644
--- 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(struct net_device *dev,
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)
--
2.39.2
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH][next] r8169: Fix spelling mistake: "tx_underun" -> "tx_underrun"
2024-09-09 14:00 [PATCH][next] r8169: Fix spelling mistake: "tx_underun" -> "tx_underrun" Colin Ian King
@ 2024-09-10 7:36 ` Simon Horman
2024-09-10 16:53 ` Heiner Kallweit
2024-09-11 1:40 ` patchwork-bot+netdevbpf
2 siblings, 0 replies; 4+ messages in thread
From: Simon Horman @ 2024-09-10 7:36 UTC (permalink / raw)
To: Colin Ian King
Cc: Heiner Kallweit, nic_swsd, David S . Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, netdev, kernel-janitors,
linux-kernel
On Mon, Sep 09, 2024 at 03:00:21PM +0100, Colin Ian King wrote:
> 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>
Thanks Colin,
I've confirmed that this addresses all instances of this problem
in this driver.
Reviewed-by: Simon Horman <horms@kernel.org>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH][next] r8169: Fix spelling mistake: "tx_underun" -> "tx_underrun"
2024-09-09 14:00 [PATCH][next] r8169: Fix spelling mistake: "tx_underun" -> "tx_underrun" Colin Ian King
2024-09-10 7:36 ` Simon Horman
@ 2024-09-10 16:53 ` Heiner Kallweit
2024-09-11 1:40 ` patchwork-bot+netdevbpf
2 siblings, 0 replies; 4+ messages in thread
From: Heiner Kallweit @ 2024-09-10 16:53 UTC (permalink / raw)
To: Colin Ian King, nic_swsd, David S . Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, netdev
Cc: kernel-janitors, linux-kernel
On 09.09.2024 16:00, Colin Ian King wrote:
> 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>
> ---
> drivers/net/ethernet/realtek/r8169_main.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
Reviewed-by: Heiner Kallweit <hkallweit1@gmail.com>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH][next] r8169: Fix spelling mistake: "tx_underun" -> "tx_underrun"
2024-09-09 14:00 [PATCH][next] r8169: Fix spelling mistake: "tx_underun" -> "tx_underrun" Colin Ian King
2024-09-10 7:36 ` Simon Horman
2024-09-10 16:53 ` Heiner Kallweit
@ 2024-09-11 1:40 ` patchwork-bot+netdevbpf
2 siblings, 0 replies; 4+ messages in thread
From: patchwork-bot+netdevbpf @ 2024-09-11 1:40 UTC (permalink / raw)
To: Colin Ian King
Cc: hkallweit1, nic_swsd, davem, edumazet, kuba, pabeni, netdev,
kernel-janitors, linux-kernel
Hello:
This patch was applied to netdev/net-next.git (main)
by Jakub Kicinski <kuba@kernel.org>:
On Mon, 9 Sep 2024 15:00:21 +0100 you wrote:
> 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>
> ---
> drivers/net/ethernet/realtek/r8169_main.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
Here is the summary with links:
- [next] r8169: Fix spelling mistake: "tx_underun" -> "tx_underrun"
https://git.kernel.org/netdev/net-next/c/8df9439389a4
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-09-11 1:40 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-09 14:00 [PATCH][next] r8169: Fix spelling mistake: "tx_underun" -> "tx_underrun" Colin Ian King
2024-09-10 7:36 ` Simon Horman
2024-09-10 16:53 ` Heiner Kallweit
2024-09-11 1:40 ` patchwork-bot+netdevbpf
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).