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

Commit 042b9ada authored by Eli Cohen's avatar Eli Cohen Committed by Roland Dreier
Browse files

mlx5_core: Use mlx5 core style warning



Use mlx5_core_warn(), which is the standard warning emitter function, instead
of pr_warn().

Signed-off-by: default avatarEli Cohen <eli@mellanox.com>
Signed-off-by: default avatarRoland Dreier <roland@purestorage.com>
parent 0b6e81b9
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -84,7 +84,8 @@ int mlx5_core_create_qp(struct mlx5_core_dev *dev,
	}

	if (out.hdr.status) {
		pr_warn("current num of QPs 0x%x\n", atomic_read(&dev->num_qps));
		mlx5_core_warn(dev, "current num of QPs 0x%x\n",
			       atomic_read(&dev->num_qps));
		return mlx5_cmd_status_to_err(&out.hdr);
	}