Skip to content

Commit 8df9439

Browse files
ColinIanKingkuba-moo
authored andcommitted
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 <[email protected]> Reviewed-by: Simon Horman <[email protected]> Reviewed-by: Heiner Kallweit <[email protected]> Link: https://patch.msgid.link/[email protected] Signed-off-by: Jakub Kicinski <[email protected]>
1 parent c48994b commit 8df9439

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/net/ethernet/realtek/r8169_main.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -578,7 +578,7 @@ struct rtl8169_counters {
578578
__le64 rx_broadcast;
579579
__le32 rx_multicast;
580580
__le16 tx_aborted;
581-
__le16 tx_underun;
581+
__le16 tx_underrun;
582582
};
583583

584584
struct rtl8169_tc_offsets {
@@ -1843,7 +1843,7 @@ static void rtl8169_get_ethtool_stats(struct net_device *dev,
18431843
data[9] = le64_to_cpu(counters->rx_broadcast);
18441844
data[10] = le32_to_cpu(counters->rx_multicast);
18451845
data[11] = le16_to_cpu(counters->tx_aborted);
1846-
data[12] = le16_to_cpu(counters->tx_underun);
1846+
data[12] = le16_to_cpu(counters->tx_underrun);
18471847
}
18481848

18491849
static void rtl8169_get_strings(struct net_device *dev, u32 stringset, u8 *data)

0 commit comments

Comments
 (0)