rtase: Fix spelling mistake: "tx_underun" -> "tx_underrun"
authorColin Ian King <colin.i.king@gmail.com>
Mon, 9 Sep 2024 13:46:12 +0000 (14:46 +0100)
committerJakub Kicinski <kuba@kernel.org>
Wed, 11 Sep 2024 01:33:32 +0000 (18:33 -0700)
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>
Link: https://patch.msgid.link/20240909134612.63912-1-colin.i.king@gmail.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
drivers/net/ethernet/realtek/rtase/rtase_main.c

index 7882f2c0e1a4a510121257ac21c21dffa9fab22e..869183e1565ed139e2485309663e9348f8862728 100644 (file)
@@ -98,7 +98,7 @@ struct rtase_counters {
        __le64 rx_broadcast;
        __le32 rx_multicast;
        __le16 tx_aborted;
-       __le16 tx_underun;
+       __le16 tx_underrun;
 } __packed;
 
 static void rtase_w8(const struct rtase_private *tp, u16 reg, u8 val8)
@@ -1619,8 +1619,8 @@ static void rtase_dump_state(const struct net_device *dev)
                   le32_to_cpu(counters->rx_multicast));
        netdev_err(dev, "tx_aborted %d\n",
                   le16_to_cpu(counters->tx_aborted));
-       netdev_err(dev, "tx_underun %d\n",
-                  le16_to_cpu(counters->tx_underun));
+       netdev_err(dev, "tx_underrun %d\n",
+                  le16_to_cpu(counters->tx_underrun));
 }
 
 static void rtase_tx_timeout(struct net_device *dev, unsigned int txqueue)