diff options
author | Itay Aveksis <itayav@mellanox.com> | 2017-06-07 16:01:51 +0200 |
---|---|---|
committer | Saeed Mahameed <saeedm@mellanox.com> | 2017-06-15 23:12:41 +0200 |
commit | 3e432ab6d9eb3671e065cd7a009adefd6dbf4a04 (patch) | |
tree | 9825bf5548224158b03a0cc85972fad4965f6bff | |
parent | net/mlx5e: Use function to map aRFS into traffic type (diff) | |
download | linux-3e432ab6d9eb3671e065cd7a009adefd6dbf4a04.tar.xz linux-3e432ab6d9eb3671e065cd7a009adefd6dbf4a04.zip |
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>
-rw-r--r-- | drivers/net/ethernet/mellanox/mlx5/core/en_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/mellanox/mlx5/core/en_main.c b/drivers/net/ethernet/mellanox/mlx5/core/en_main.c index 9dad80f32314..51f686d737cb 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; } |