Commit d59239f8 authored by Colin Ian King's avatar Colin Ian King Committed by Jakub Kicinski

rtase: 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: default avatarColin Ian King <colin.i.king@gmail.com>
Reviewed-by: default avatarSimon Horman <horms@kernel.org>
Link: https://patch.msgid.link/20240909134612.63912-1-colin.i.king@gmail.comSigned-off-by: default avatarJakub Kicinski <kuba@kernel.org>
parent 8df94393
...@@ -98,7 +98,7 @@ struct rtase_counters { ...@@ -98,7 +98,7 @@ struct rtase_counters {
__le64 rx_broadcast; __le64 rx_broadcast;
__le32 rx_multicast; __le32 rx_multicast;
__le16 tx_aborted; __le16 tx_aborted;
__le16 tx_underun; __le16 tx_underrun;
} __packed; } __packed;
static void rtase_w8(const struct rtase_private *tp, u16 reg, u8 val8) 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) ...@@ -1619,8 +1619,8 @@ static void rtase_dump_state(const struct net_device *dev)
le32_to_cpu(counters->rx_multicast)); le32_to_cpu(counters->rx_multicast));
netdev_err(dev, "tx_aborted %d\n", netdev_err(dev, "tx_aborted %d\n",
le16_to_cpu(counters->tx_aborted)); le16_to_cpu(counters->tx_aborted));
netdev_err(dev, "tx_underun %d\n", netdev_err(dev, "tx_underrun %d\n",
le16_to_cpu(counters->tx_underun)); le16_to_cpu(counters->tx_underrun));
} }
static void rtase_tx_timeout(struct net_device *dev, unsigned int txqueue) static void rtase_tx_timeout(struct net_device *dev, unsigned int txqueue)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment