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

Commit 4cce3390 authored by Roland Dreier's avatar Roland Dreier
Browse files

[IB] fix up class_device_create() calls



Fix class_device_create() calls to match the new prototype which
takes a parent device pointer.

Signed-off-by: default avatarRoland Dreier <rolandd@cisco.com>
parent a4da0628
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -755,7 +755,7 @@ static int ib_umad_init_port(struct ib_device *device, int port_num,
	if (cdev_add(port->dev, base_dev + port->dev_num, 1))
		goto err_cdev;

	port->class_dev = class_device_create(umad_class, port->dev->dev,
	port->class_dev = class_device_create(umad_class, NULL, port->dev->dev,
					      device->dma_device,
					      "umad%d", port->dev_num);
	if (IS_ERR(port->class_dev))
@@ -775,7 +775,7 @@ static int ib_umad_init_port(struct ib_device *device, int port_num,
	if (cdev_add(port->sm_dev, base_dev + port->dev_num + IB_UMAD_MAX_PORTS, 1))
		goto err_sm_cdev;

	port->sm_class_dev = class_device_create(umad_class, port->sm_dev->dev,
	port->sm_class_dev = class_device_create(umad_class, NULL, port->sm_dev->dev,
						 device->dma_device,
						 "issm%d", port->dev_num);
	if (IS_ERR(port->sm_class_dev))
+2 −1
Original line number Diff line number Diff line
@@ -757,7 +757,8 @@ static void ib_uverbs_add_one(struct ib_device *device)
	if (cdev_add(uverbs_dev->dev, IB_UVERBS_BASE_DEV + uverbs_dev->devnum, 1))
		goto err_cdev;

	uverbs_dev->class_dev = class_device_create(uverbs_class, uverbs_dev->dev->dev,
	uverbs_dev->class_dev = class_device_create(uverbs_class, NULL,
						    uverbs_dev->dev->dev,
						    device->dma_device,
						    "uverbs%d", uverbs_dev->devnum);
	if (IS_ERR(uverbs_dev->class_dev))