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

[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
......@@ -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))
......
......@@ -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))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment