diff options
author | Parav Pandit <parav@mellanox.com> | 2018-10-07 05:12:41 -0400 |
---|---|---|
committer | Doug Ledford <dledford@redhat.com> | 2018-10-16 14:09:45 -0400 |
commit | 1ae4cfa03902c83d1d77123e5ac8f0812c61b90e (patch) | |
tree | f177e0a1c8fec48414ad529dafb3c6ee6c5307ee /drivers/infiniband/core/sysfs.c | |
parent | 0f6ef65d1c6ec8deb5d0f11f86631ec4cfe8f22e (diff) |
RDMA/core: Rename ports_parent to ports_kobj
Normally kobj objects have kobj suffix to reflect it.
Rename ports_parent to ports_kobj.
Signed-off-by: Parav Pandit <parav@mellanox.com>
Signed-off-by: Leon Romanovsky <leonro@mellanox.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
Diffstat (limited to 'drivers/infiniband/core/sysfs.c')
-rw-r--r-- | drivers/infiniband/core/sysfs.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/drivers/infiniband/core/sysfs.c b/drivers/infiniband/core/sysfs.c index 107c8ba2046c..f54f107ef668 100644 --- a/drivers/infiniband/core/sysfs.c +++ b/drivers/infiniband/core/sysfs.c | |||
@@ -1036,7 +1036,7 @@ static int add_port(struct ib_device *device, int port_num, | |||
1036 | p->port_num = port_num; | 1036 | p->port_num = port_num; |
1037 | 1037 | ||
1038 | ret = kobject_init_and_add(&p->kobj, &port_type, | 1038 | ret = kobject_init_and_add(&p->kobj, &port_type, |
1039 | device->ports_parent, | 1039 | device->ports_kobj, |
1040 | "%d", port_num); | 1040 | "%d", port_num); |
1041 | if (ret) { | 1041 | if (ret) { |
1042 | kfree(p); | 1042 | kfree(p); |
@@ -1305,7 +1305,7 @@ static void free_port_list_attributes(struct ib_device *device) | |||
1305 | kobject_put(p); | 1305 | kobject_put(p); |
1306 | } | 1306 | } |
1307 | 1307 | ||
1308 | kobject_put(device->ports_parent); | 1308 | kobject_put(device->ports_kobj); |
1309 | } | 1309 | } |
1310 | 1310 | ||
1311 | int ib_device_register_sysfs(struct ib_device *device, | 1311 | int ib_device_register_sysfs(struct ib_device *device, |
@@ -1323,9 +1323,8 @@ int ib_device_register_sysfs(struct ib_device *device, | |||
1323 | if (ret) | 1323 | if (ret) |
1324 | goto err; | 1324 | goto err; |
1325 | 1325 | ||
1326 | device->ports_parent = kobject_create_and_add("ports", | 1326 | device->ports_kobj = kobject_create_and_add("ports", &class_dev->kobj); |
1327 | &class_dev->kobj); | 1327 | if (!device->ports_kobj) { |
1328 | if (!device->ports_parent) { | ||
1329 | ret = -ENOMEM; | 1328 | ret = -ENOMEM; |
1330 | goto err_put; | 1329 | goto err_put; |
1331 | } | 1330 | } |