mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-07 19:30:30 +09:00
net/mlx5: Fix error message when failing to allocate device memory
commita65735148eupstream. Fix spacing for the error and also the correct error code pointer. Fixes:c9b9dcb430("net/mlx5: Move device memory management to mlx5_core") Signed-off-by: Roi Dayan <roid@nvidia.com> Signed-off-by: Saeed Mahameed <saeedm@nvidia.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
59dd110ca2
commit
390aa5c006
@@ -1024,7 +1024,7 @@ static int mlx5_init_once(struct mlx5_core_dev *dev)
|
|||||||
|
|
||||||
dev->dm = mlx5_dm_create(dev);
|
dev->dm = mlx5_dm_create(dev);
|
||||||
if (IS_ERR(dev->dm))
|
if (IS_ERR(dev->dm))
|
||||||
mlx5_core_warn(dev, "Failed to init device memory%d\n", err);
|
mlx5_core_warn(dev, "Failed to init device memory %ld\n", PTR_ERR(dev->dm));
|
||||||
|
|
||||||
dev->tracer = mlx5_fw_tracer_create(dev);
|
dev->tracer = mlx5_fw_tracer_create(dev);
|
||||||
dev->hv_vhca = mlx5_hv_vhca_create(dev);
|
dev->hv_vhca = mlx5_hv_vhca_create(dev);
|
||||||
|
|||||||
Reference in New Issue
Block a user