iser-target: Remove redundant assignment to local variable
No need to keep a local ib_dev as a device pointer. Signed-off-by: Sagi Grimberg <sagig@mellanox.com> Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
This commit is contained in:
parent
172369c570
commit
fd8205e883
1 changed files with 2 additions and 3 deletions
|
@ -346,12 +346,11 @@ out_cq:
|
||||||
static int
|
static int
|
||||||
isert_create_device_ib_res(struct isert_device *device)
|
isert_create_device_ib_res(struct isert_device *device)
|
||||||
{
|
{
|
||||||
struct ib_device *ib_dev = device->ib_device;
|
|
||||||
struct ib_device_attr *dev_attr;
|
struct ib_device_attr *dev_attr;
|
||||||
int ret = 0;
|
int ret;
|
||||||
|
|
||||||
dev_attr = &device->dev_attr;
|
dev_attr = &device->dev_attr;
|
||||||
ret = isert_query_device(ib_dev, dev_attr);
|
ret = isert_query_device(device->ib_device, dev_attr);
|
||||||
if (ret)
|
if (ret)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue