diff options
author | 2024-07-16 10:38:51 +0100 | |
---|---|---|
committer | 2024-07-16 07:55:39 -0700 | |
commit | 77ae5e5b00720372af2860efdc4bc652ac682696 (patch) | |
tree | 7c6ce4ef8e85dde72ce69c19f4c0d32a733ea721 | |
parent | tcp: Replace strncpy() with strscpy() (diff) | |
download | wireguard-linux-77ae5e5b00720372af2860efdc4bc652ac682696.tar.xz wireguard-linux-77ae5e5b00720372af2860efdc4bc652ac682696.zip |
eth: fbnic: Fix spelling mistake "tiggerring" -> "triggering"
There is a spelling mistake in a netdev_warn message. Fix it.
Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Link: https://patch.msgid.link/20240716093851.1003131-1-colin.i.king@gmail.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to '')
-rw-r--r-- | drivers/net/ethernet/meta/fbnic/fbnic_txrx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/meta/fbnic/fbnic_txrx.c b/drivers/net/ethernet/meta/fbnic/fbnic_txrx.c index b1a471fac4fe..0ed4c9fff5d8 100644 --- a/drivers/net/ethernet/meta/fbnic/fbnic_txrx.c +++ b/drivers/net/ethernet/meta/fbnic/fbnic_txrx.c @@ -1499,7 +1499,7 @@ void fbnic_disable(struct fbnic_net *fbn) static void fbnic_tx_flush(struct fbnic_dev *fbd) { - netdev_warn(fbd->netdev, "tiggerring Tx flush\n"); + netdev_warn(fbd->netdev, "triggering Tx flush\n"); fbnic_rmw32(fbd, FBNIC_TMI_DROP_CTRL, FBNIC_TMI_DROP_CTRL_EN, FBNIC_TMI_DROP_CTRL_EN); |