diff options
author | Kay Sievers <kay.sievers@vrfy.org> | 2009-01-06 13:44:39 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-01-06 13:44:39 -0500 |
commit | d927e38c6c1859494792547beee249c17b43a17e (patch) | |
tree | 05c7b48a556cad74fec866c20047a7d8ca0c4d99 /drivers/infiniband/core | |
parent | 0162f3822c08a2d7021faa6fe93391e7df585856 (diff) |
infiniband: struct device - replace bus_id with dev_name(), dev_set_name()
Acked-by: Roland Dreier <rolandd@cisco.com>
Signed-off-by: Kay Sievers <kay.sievers@vrfy.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/infiniband/core')
-rw-r--r-- | drivers/infiniband/core/sysfs.c | 2 | ||||
-rw-r--r-- | drivers/infiniband/core/ucm.c | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/drivers/infiniband/core/sysfs.c b/drivers/infiniband/core/sysfs.c index 4f4d1bb9f069..b43f7d3682d3 100644 --- a/drivers/infiniband/core/sysfs.c +++ b/drivers/infiniband/core/sysfs.c | |||
@@ -778,7 +778,7 @@ int ib_device_register_sysfs(struct ib_device *device) | |||
778 | class_dev->class = &ib_class; | 778 | class_dev->class = &ib_class; |
779 | class_dev->driver_data = device; | 779 | class_dev->driver_data = device; |
780 | class_dev->parent = device->dma_device; | 780 | class_dev->parent = device->dma_device; |
781 | strlcpy(class_dev->bus_id, device->name, BUS_ID_SIZE); | 781 | dev_set_name(class_dev, device->name); |
782 | 782 | ||
783 | INIT_LIST_HEAD(&device->port_list); | 783 | INIT_LIST_HEAD(&device->port_list); |
784 | 784 | ||
diff --git a/drivers/infiniband/core/ucm.c b/drivers/infiniband/core/ucm.c index e603736682bf..51bd9669cb1f 100644 --- a/drivers/infiniband/core/ucm.c +++ b/drivers/infiniband/core/ucm.c | |||
@@ -1266,8 +1266,7 @@ static void ib_ucm_add_one(struct ib_device *device) | |||
1266 | ucm_dev->dev.parent = device->dma_device; | 1266 | ucm_dev->dev.parent = device->dma_device; |
1267 | ucm_dev->dev.devt = ucm_dev->cdev.dev; | 1267 | ucm_dev->dev.devt = ucm_dev->cdev.dev; |
1268 | ucm_dev->dev.release = ib_ucm_release_dev; | 1268 | ucm_dev->dev.release = ib_ucm_release_dev; |
1269 | snprintf(ucm_dev->dev.bus_id, BUS_ID_SIZE, "ucm%d", | 1269 | dev_set_name(&ucm_dev->dev, "ucm%d", ucm_dev->devnum); |
1270 | ucm_dev->devnum); | ||
1271 | if (device_register(&ucm_dev->dev)) | 1270 | if (device_register(&ucm_dev->dev)) |
1272 | goto err_cdev; | 1271 | goto err_cdev; |
1273 | 1272 | ||