diff options
author | Joachim Fenkes <fenkes@de.ibm.com> | 2007-04-23 18:20:27 +0200 |
---|---|---|
committer | Roland Dreier <rolandd@cisco.com> | 2007-04-24 21:30:38 -0700 |
commit | 1912ffbb88efe872eb8fa8113dfb3cb0b7238764 (patch) | |
tree | 9584df41dd3a517ed330435d634ebf589eb4aa2d /drivers/infiniband/core/sysfs.c | |
parent | c4ed790dfd4b2182c76e0fcd79d4aa85ab02eccf (diff) |
IB: Set class_dev->dev in core for nice device symlink
All RDMA drivers except ehca set class_dev->dev to their dma_device
value (ehca leaves this unset). dma_device is the only value that
makes any sense, so move this assignment to core/sysfs.c. This reduce
the duplicated code in the rest of the drivers and gives ehca a nice
/sys/class/infiniband/ehcaX/device symlink.
Signed-off-by: Joachim Fenkes <fenkes@de.ibm.com>
Signed-off-by: Roland Dreier <rolandd@cisco.com>
Diffstat (limited to 'drivers/infiniband/core/sysfs.c')
-rw-r--r-- | drivers/infiniband/core/sysfs.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/infiniband/core/sysfs.c b/drivers/infiniband/core/sysfs.c index 000c086bf2e9..08c299ebf4a8 100644 --- a/drivers/infiniband/core/sysfs.c +++ b/drivers/infiniband/core/sysfs.c @@ -683,6 +683,7 @@ int ib_device_register_sysfs(struct ib_device *device) class_dev->class = &ib_class; class_dev->class_data = device; + class_dev->dev = device->dma_device; strlcpy(class_dev->class_id, device->name, BUS_ID_SIZE); INIT_LIST_HEAD(&device->port_list); |