diff options
author | Michael J. Ruhl <michael.j.ruhl@intel.com> | 2017-12-19 04:56:44 +0100 |
---|---|---|
committer | Doug Ledford <dledford@redhat.com> | 2018-01-05 19:34:55 +0100 |
commit | 06f2597f75c7ecd9006dd9711ec8c09b4f3d29e3 (patch) | |
tree | d2762276907fbec34b519ce50b8050ab3dc141d9 /drivers/infiniband/hw/hfi1/driver.c | |
parent | IB/{rdmavt, hfi1, qib}: Self determine driver name (diff) | |
download | linux-06f2597f75c7ecd9006dd9711ec8c09b4f3d29e3.tar.xz linux-06f2597f75c7ecd9006dd9711ec8c09b4f3d29e3.zip |
IB/{rdmavt, hfi1, qib}: Remove get_card_name() downcall
rdmavt has a down call to client drivers to retrieve a crafted card
name.
This name should be the IB defined name.
Rather than craft the name each time it is needed, simply retrieve
the IB allocated name from the IB device.
Update the function name to reflect its application.
Clean up driver code to match this change.
Reviewed-by: Mike Marciniszyn <mike.marciniszyn@intel.com>
Signed-off-by: Michael J. Ruhl <michael.j.ruhl@intel.com>
Signed-off-by: Dennis Dalessandro <dennis.dalessandro@intel.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
Diffstat (limited to 'drivers/infiniband/hw/hfi1/driver.c')
-rw-r--r-- | drivers/infiniband/hw/hfi1/driver.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/drivers/infiniband/hw/hfi1/driver.c b/drivers/infiniband/hw/hfi1/driver.c index 4f65ac671044..4561719096f2 100644 --- a/drivers/infiniband/hw/hfi1/driver.c +++ b/drivers/infiniband/hw/hfi1/driver.c @@ -167,14 +167,6 @@ const char *get_unit_name(int unit) return iname; } -const char *get_card_name(struct rvt_dev_info *rdi) -{ - struct hfi1_ibdev *ibdev = container_of(rdi, struct hfi1_ibdev, rdi); - struct hfi1_devdata *dd = container_of(ibdev, - struct hfi1_devdata, verbs_dev); - return get_unit_name(dd->unit); -} - struct pci_dev *get_pci_dev(struct rvt_dev_info *rdi) { struct hfi1_ibdev *ibdev = container_of(rdi, struct hfi1_ibdev, rdi); |