diff options
author | Jason Gunthorpe <jgg@mellanox.com> | 2018-09-21 00:42:26 +0200 |
---|---|---|
committer | Jason Gunthorpe <jgg@mellanox.com> | 2018-09-26 21:51:48 +0200 |
commit | 9de6986148360bdc954e8621cf024f4c830ddb13 (patch) | |
tree | 10eb24062889aa2d1fbc9d11769d3ebc4cc7c660 /drivers/infiniband/hw/vmw_pvrdma | |
parent | RDMA/core: Use dev_name instead of ibdev->name (diff) | |
download | linux-9de6986148360bdc954e8621cf024f4c830ddb13.tar.xz linux-9de6986148360bdc954e8621cf024f4c830ddb13.zip |
RDMA/drivers: Use dev_name instead of ibdev->name
These return the same thing but dev_name is a more conventional use of the
kernel API.
Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
Reviewed-by: Leon Romanovsky <leonro@mellanox.com>
Diffstat (limited to 'drivers/infiniband/hw/vmw_pvrdma')
-rw-r--r-- | drivers/infiniband/hw/vmw_pvrdma/pvrdma_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/hw/vmw_pvrdma/pvrdma_main.c b/drivers/infiniband/hw/vmw_pvrdma/pvrdma_main.c index 6878107fc637..c1e31985b11c 100644 --- a/drivers/infiniband/hw/vmw_pvrdma/pvrdma_main.c +++ b/drivers/infiniband/hw/vmw_pvrdma/pvrdma_main.c @@ -734,7 +734,7 @@ static void pvrdma_netdevice_event_handle(struct pvrdma_dev *dev, default: dev_dbg(&dev->pdev->dev, "ignore netdevice event %ld on %s\n", - event, dev->ib_dev.name); + event, dev_name(&dev->ib_dev.dev)); break; } } |