Commit 2c955856 authored by Colin Ian King's avatar Colin Ian King Committed by David S. Miller

net: dm9051: Fix spelling mistake "eror" -> "error"

There are spelling mistakes in debug messages. Fix them.
Signed-off-by: default avatarColin Ian King <colin.i.king@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 99cd6a64
......@@ -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);
......
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