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

Commit 281d1a92 authored by Wei Yongjun's avatar Wei Yongjun Committed by Roland Dreier
Browse files

IB/mlx5: Fix error return code in init_one()



Fix to return a negative error code from the error handling case
instead of 0, as done elsewhere in this function.

Signed-off-by: default avatarWei Yongjun <yongjun_wei@trendmicro.com.cn>
Signed-off-by: default avatarRoland Dreier <roland@purestorage.com>
parent 3b2f64d0
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -1426,7 +1426,8 @@ static int init_one(struct pci_dev *pdev,
	if (err)
		goto err_eqs;

	if (ib_register_device(&dev->ib_dev, NULL))
	err = ib_register_device(&dev->ib_dev, NULL);
	if (err)
		goto err_rsrc;

	err = create_umr_res(dev);
@@ -1434,8 +1435,9 @@ static int init_one(struct pci_dev *pdev,
		goto err_dev;

	for (i = 0; i < ARRAY_SIZE(mlx5_class_attributes); i++) {
		if (device_create_file(&dev->ib_dev.dev,
				       mlx5_class_attributes[i]))
		err = device_create_file(&dev->ib_dev.dev,
					 mlx5_class_attributes[i]);
		if (err)
			goto err_umrc;
	}