diff mbox series

[next] net: dm9051: Fix spelling mistake "eror" -> "error"

Message ID 20220215103920.78380-1-colin.i.king@gmail.com (mailing list archive)
State Accepted
Commit 2c955856da4faec3a36df1e85b3ba3dfe230d6fd
Delegated to: Netdev Maintainers
Headers show
Series [next] net: dm9051: Fix spelling mistake "eror" -> "error" | expand

Checks

Context Check Description
netdev/fixes_present success Fixes tag not required for -next series
netdev/subject_prefix warning Target tree name not specified in the subject
netdev/cover_letter success Single patches do not need cover letters
netdev/patch_count success Link
netdev/header_inline success No static functions without inline keyword in header files
netdev/build_32bit success Errors and warnings before: 0 this patch: 0
netdev/cc_maintainers warning 1 maintainers not CCed: colin.king@intel.com
netdev/build_clang success Errors and warnings before: 0 this patch: 0
netdev/module_param success Was 0 now: 0
netdev/verify_signedoff success Signed-off-by tag matches author and committer
netdev/verify_fixes success No Fixes tag
netdev/build_allmodconfig_warn success Errors and warnings before: 0 this patch: 0
netdev/checkpatch warning WARNING: 'eror' may be misspelled - perhaps 'error'?
netdev/kdoc success Errors and warnings before: 0 this patch: 0
netdev/source_inline success Was 0 now: 0
netdev/tree_selection success Guessing tree name failed - patch did not apply

Commit Message

Colin Ian King Feb. 15, 2022, 10:39 a.m. UTC
There are spelling mistakes in debug messages. Fix them.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
---
 drivers/net/ethernet/davicom/dm9051.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

patchwork-bot+netdevbpf@kernel.org Feb. 15, 2022, 3 p.m. UTC | #1
Hello:

This patch was applied to netdev/net-next.git (master)
by David S. Miller <davem@davemloft.net>:

On Tue, 15 Feb 2022 10:39:20 +0000 you wrote:
> There are spelling mistakes in debug messages. Fix them.
> 
> Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
> ---
>  drivers/net/ethernet/davicom/dm9051.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)

Here is the summary with links:
  - [next] net: dm9051: Fix spelling mistake "eror" -> "error"
    https://git.kernel.org/netdev/net-next/c/2c955856da4f

You are awesome, thank you!
diff mbox series

Patch

diff --git a/drivers/net/ethernet/davicom/dm9051.c b/drivers/net/ethernet/davicom/dm9051.c
index d2513c97f83e..a63d17e669a0 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);