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>
This commit is contained in:
Colin Ian King 2022-02-15 10:39:20 +00:00 committed by David S. Miller
parent 99cd6a64e1
commit 2c955856da
1 changed files with 2 additions and 2 deletions

View File

@ -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);