mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-17 09:14:19 +08:00
[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: Roland Dreier <rolandd@cisco.com>
This commit is contained in:
parent
a4da0628ef
commit
4cce3390c9
@ -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))
|
||||
|
Loading…
Reference in New Issue
Block a user