aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ethernet/davicom
diff options
context:
space:
mode:
authorColin Ian King <colin.i.king@gmail.com>2022-02-15 10:39:20 +0000
committerDavid S. Miller <davem@davemloft.net>2022-02-15 14:56:57 +0000
commit2c955856da4faec3a36df1e85b3ba3dfe230d6fd (patch)
tree37967f9ec43c21178375018527ad96b2a761acb5 /drivers/net/ethernet/davicom
parentdpaa2-eth: Simplify bool conversion (diff)
downloadlinux-dev-2c955856da4faec3a36df1e85b3ba3dfe230d6fd.tar.xz
linux-dev-2c955856da4faec3a36df1e85b3ba3dfe230d6fd.zip
net: dm9051: Fix spelling mistake "eror" -> "error"
There are spelling mistakes in debug messages. Fix them. Signed-off-by: Colin Ian King <colin.i.king@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/davicom')
-rw-r--r--drivers/net/ethernet/davicom/dm9051.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/ethernet/davicom/dm9051.c b/drivers/net/ethernet/davicom/dm9051.c
index cee3ff499fd4..8436afa34620 100644
--- a/drivers/net/ethernet/davicom/dm9051.c
+++ b/drivers/net/ethernet/davicom/dm9051.c
@@ -771,11 +771,11 @@ static int dm9051_loop_rx(struct board_info *db)
if (db->rxhdr.status & RSR_ERR_BITS) {
db->bc.status_err_counter++;
- netdev_dbg(ndev, "check rxstatus-eror (%02x)\n",
+ netdev_dbg(ndev, "check rxstatus-error (%02x)\n",
db->rxhdr.status);
} else {
db->bc.large_err_counter++;
- netdev_dbg(ndev, "check rxlen large-eror (%d > %d)\n",
+ netdev_dbg(ndev, "check rxlen large-error (%d > %d)\n",
rxlen, DM9051_PKT_MAX);
}
return dm9051_all_restart(db);