Commit fd8205e8 authored by Sagi Grimberg's avatar Sagi Grimberg Committed by Nicholas Bellinger

iser-target: Remove redundant assignment to local variable

No need to keep a local ib_dev as a device pointer.
Signed-off-by: default avatarSagi Grimberg <sagig@mellanox.com>
Signed-off-by: default avatarNicholas Bellinger <nab@linux-iscsi.org>
parent 172369c5
......@@ -346,12 +346,11 @@ isert_alloc_comps(struct isert_device *device,
static int
isert_create_device_ib_res(struct isert_device *device)
{
struct ib_device *ib_dev = device->ib_device;
struct ib_device_attr *dev_attr;
int ret = 0;
int ret;
dev_attr = &device->dev_attr;
ret = isert_query_device(ib_dev, dev_attr);
ret = isert_query_device(device->ib_device, dev_attr);
if (ret)
return ret;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment