net/mlx5e: Fix typo in warning if CQ moderation is not supported

Signed-off-by: Itay Aveksis <itayav@mellanox.com>
Signed-off-by: Saeed Mahameed <saeedm@mellanox.com>
This commit is contained in:
Itay Aveksis 2017-06-07 17:01:51 +03:00 committed by Saeed Mahameed
parent 22303f790d
commit 3e432ab6d9
1 changed files with 1 additions and 1 deletions

View File

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