From: Itay Aveksis Date: Wed, 7 Jun 2017 14:01:51 +0000 (+0300) Subject: net/mlx5e: Fix typo in warning if CQ moderation is not supported X-Git-Tag: v4.14-rc1~596^2~162^2~6 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3e432ab6d9eb3671e065cd7a009adefd6dbf4a04;p=platform%2Fkernel%2Flinux-rpi.git net/mlx5e: Fix typo in warning if CQ moderation is not supported Signed-off-by: Itay Aveksis Signed-off-by: Saeed Mahameed --- diff --git a/drivers/net/ethernet/mellanox/mlx5/core/en_main.c b/drivers/net/ethernet/mellanox/mlx5/core/en_main.c index 9dad80f..51f686d 100644 --- a/drivers/net/ethernet/mellanox/mlx5/core/en_main.c +++ b/drivers/net/ethernet/mellanox/mlx5/core/en_main.c @@ -3718,7 +3718,7 @@ static int mlx5e_check_required_hca_cap(struct mlx5_core_dev *mdev) if (!MLX5_CAP_ETH(mdev, self_lb_en_modifiable)) mlx5_core_warn(mdev, "Self loop back prevention is not supported\n"); if (!MLX5_CAP_GEN(mdev, cq_moderation)) - mlx5_core_warn(mdev, "CQ modiration is not supported\n"); + mlx5_core_warn(mdev, "CQ moderation is not supported\n"); return 0; }