mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
scsi: bnx2i: remove set but not used variable 'cid_num'
Fixes gcc '-Wunused-but-set-variable' warning:
drivers/scsi/bnx2i/bnx2i_hwi.c: In function 'bnx2i_process_ofld_cmpl':
drivers/scsi/bnx2i/bnx2i_hwi.c:2430:6: warning:
variable 'cid_num' set but not used [-Wunused-but-set-variable]
It never used since commit
cf4e636385
("[SCSI] bnx2i: Add bnx2i iSCSI driver.")
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Acked-by: Nilesh Javali <nilesh.javali@cavium.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
parent
1794ef2b15
commit
9959376c1b
@ -2433,7 +2433,6 @@ static void bnx2i_process_ofld_cmpl(struct bnx2i_hba *hba,
|
|||||||
{
|
{
|
||||||
u32 cid_addr;
|
u32 cid_addr;
|
||||||
struct bnx2i_endpoint *ep;
|
struct bnx2i_endpoint *ep;
|
||||||
u32 cid_num;
|
|
||||||
|
|
||||||
ep = bnx2i_find_ep_in_ofld_list(hba, ofld_kcqe->iscsi_conn_id);
|
ep = bnx2i_find_ep_in_ofld_list(hba, ofld_kcqe->iscsi_conn_id);
|
||||||
if (!ep) {
|
if (!ep) {
|
||||||
@ -2468,7 +2467,6 @@ static void bnx2i_process_ofld_cmpl(struct bnx2i_hba *hba,
|
|||||||
} else {
|
} else {
|
||||||
ep->state = EP_STATE_OFLD_COMPL;
|
ep->state = EP_STATE_OFLD_COMPL;
|
||||||
cid_addr = ofld_kcqe->iscsi_conn_context_id;
|
cid_addr = ofld_kcqe->iscsi_conn_context_id;
|
||||||
cid_num = bnx2i_get_cid_num(ep);
|
|
||||||
ep->ep_cid = cid_addr;
|
ep->ep_cid = cid_addr;
|
||||||
ep->qp.ctx_base = NULL;
|
ep->qp.ctx_base = NULL;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user