mirror of
https://github.com/torvalds/linux.git
synced 2024-12-27 05:11:48 +00:00
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>
This commit is contained in:
parent
705dec3c9f
commit
05a8a1cbf4
@ -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));
|
||||
}
|
||||
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user