git: e4aabf9a943b - stable/13 - mlx5en(4): Correct a typo in a kernel error message
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 08 Sep 2022 08:17:16 UTC
The branch stable/13 has been updated by gbe (doc committer):
URL: https://cgit.FreeBSD.org/src/commit/?id=e4aabf9a943bbd1d00347e5b895553d92a112f4d
commit e4aabf9a943bbd1d00347e5b895553d92a112f4d
Author: Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2022-09-03 17:29:33 +0000
Commit: Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2022-09-08 08:16:46 +0000
mlx5en(4): Correct a typo in a kernel error message
- s/ouput/output
(cherry picked from commit e1a40dd29427af594a733fcad7553145b4f5a7a7)
---
sys/dev/mlx5/mlx5_core/mlx5_cmd.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/dev/mlx5/mlx5_core/mlx5_cmd.c b/sys/dev/mlx5/mlx5_core/mlx5_cmd.c
index b2aec33e55c7..c347a647a519 100644
--- a/sys/dev/mlx5/mlx5_core/mlx5_cmd.c
+++ b/sys/dev/mlx5/mlx5_core/mlx5_cmd.c
@@ -937,7 +937,7 @@ static const char *deliv_status_to_str(u8 status)
case MLX5_CMD_DELIVERY_STAT_IN_LENGTH_ERR:
return "command input length error";
case MLX5_CMD_DELIVERY_STAT_OUT_LENGTH_ERR:
- return "command ouput length error";
+ return "command output length error";
case MLX5_CMD_DELIVERY_STAT_RES_FLD_NOT_CLR_ERR:
return "reserved fields not cleared";
case MLX5_CMD_DELIVERY_STAT_CMD_DESCR_ERR: