Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3e432ab6 authored by Itay Aveksis's avatar Itay Aveksis Committed by Saeed Mahameed
Browse files

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

parent 22303f79
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
}