Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 10722
b: refs/heads/master
c: bbf2078
h: refs/heads/master
v: v3
  • Loading branch information
Roland Dreier committed Oct 20, 2005
1 parent 1391055 commit a881bac
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 16 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 2e0c512aff978a7040464e81fc9c0dfdf4639c23
refs/heads/master: bbf207860931b6a033d0fbcd170ae2332c0d8216
17 changes: 2 additions & 15 deletions trunk/drivers/infiniband/core/user_mad.c
Original file line number Diff line number Diff line change
Expand Up @@ -671,17 +671,6 @@ static struct ib_client umad_client = {
.remove = ib_umad_remove_one
};

static ssize_t show_dev(struct class_device *class_dev, char *buf)
{
struct ib_umad_port *port = class_get_devdata(class_dev);

if (class_dev == &port->class_dev)
return print_dev_t(buf, port->dev.dev);
else
return print_dev_t(buf, port->sm_dev.dev);
}
static CLASS_DEVICE_ATTR(dev, S_IRUGO, show_dev, NULL);

static ssize_t show_ibdev(struct class_device *class_dev, char *buf)
{
struct ib_umad_port *port = class_get_devdata(class_dev);
Expand Down Expand Up @@ -762,6 +751,7 @@ static int ib_umad_init_port(struct ib_device *device, int port_num,

port->class_dev.class = &umad_class;
port->class_dev.dev = device->dma_device;
port->class_dev.devt = port->dev.dev;

snprintf(port->class_dev.class_id, BUS_ID_SIZE, "umad%d", port->devnum);

Expand All @@ -771,8 +761,6 @@ static int ib_umad_init_port(struct ib_device *device, int port_num,
class_set_devdata(&port->class_dev, port);
kref_get(&port->umad_dev->ref);

if (class_device_create_file(&port->class_dev, &class_device_attr_dev))
goto err_class;
if (class_device_create_file(&port->class_dev, &class_device_attr_ibdev))
goto err_class;
if (class_device_create_file(&port->class_dev, &class_device_attr_port))
Expand All @@ -786,6 +774,7 @@ static int ib_umad_init_port(struct ib_device *device, int port_num,

port->sm_class_dev.class = &umad_class;
port->sm_class_dev.dev = device->dma_device;
port->sm_class_dev.devt = port->sm_dev.dev;

snprintf(port->sm_class_dev.class_id, BUS_ID_SIZE, "issm%d", port->sm_devnum - IB_UMAD_MAX_PORTS);

Expand All @@ -795,8 +784,6 @@ static int ib_umad_init_port(struct ib_device *device, int port_num,
class_set_devdata(&port->sm_class_dev, port);
kref_get(&port->umad_dev->ref);

if (class_device_create_file(&port->sm_class_dev, &class_device_attr_dev))
goto err_sm_class;
if (class_device_create_file(&port->sm_class_dev, &class_device_attr_ibdev))
goto err_sm_class;
if (class_device_create_file(&port->sm_class_dev, &class_device_attr_port))
Expand Down

0 comments on commit a881bac

Please sign in to comment.