1
0
Fork 0

RDMA/ocrdma: Remove set-but-not-used variables

Signed-off-by: Bart Van Assche <bart.vanassche@wdc.com>
Cc: Selvin Xavier <selvin.xavier@broadcom.com>
Cc: Devesh Sharma <devesh.sharma@broadcom.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
hifive-unleashed-5.1
Bart Van Assche 2017-10-11 10:49:15 -07:00 committed by Doug Ledford
parent 705dec3c9f
commit 05a8a1cbf4
2 changed files with 2 additions and 4 deletions

View File

@ -3187,7 +3187,7 @@ void ocrdma_eqd_set_task(struct work_struct *work)
struct ocrdma_dev *dev =
container_of(work, struct ocrdma_dev, eqd_work.work);
struct ocrdma_eq *eq = NULL;
int i, num = 0, status = -EINVAL;
int i, num = 0;
u64 eq_intr;
for (i = 0; i < dev->eq_cnt; i++) {
@ -3209,7 +3209,7 @@ void ocrdma_eqd_set_task(struct work_struct *work)
}
if (num)
status = ocrdma_modify_eqd(dev, &dev->eq_tbl[0], num);
ocrdma_modify_eqd(dev, &dev->eq_tbl[0], num);
schedule_delayed_work(&dev->eqd_work, msecs_to_jiffies(1000));
}

View File

@ -66,9 +66,7 @@ int ocrdma_query_gid(struct ib_device *ibdev, u8 port,
int index, union ib_gid *sgid)
{
int ret;
struct ocrdma_dev *dev;
dev = get_ocrdma_dev(ibdev);
memset(sgid, 0, sizeof(*sgid));
if (index >= OCRDMA_MAX_SGID)
return -EINVAL;