scsi: bnx2fc: remove unneeded variable
The rc variable is not needed in bnx2fc_abts_cleanup(). Remove it and just return SUCCESS. [mkp: commit desc] Signed-off-by: Ding Xiang <dingxiang@cmss.chinamobile.com> Acked-by: Manish Rangankar <mrangankar@marvell.com> Reviewed-by: Mukesh Ojha <mojha@codeaurora.org> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
committed by
Martin K. Petersen
parent
fb17358ce8
commit
9e29a682c6
@@ -1083,7 +1083,6 @@ int bnx2fc_eh_device_reset(struct scsi_cmnd *sc_cmd)
|
|||||||
static int bnx2fc_abts_cleanup(struct bnx2fc_cmd *io_req)
|
static int bnx2fc_abts_cleanup(struct bnx2fc_cmd *io_req)
|
||||||
{
|
{
|
||||||
struct bnx2fc_rport *tgt = io_req->tgt;
|
struct bnx2fc_rport *tgt = io_req->tgt;
|
||||||
int rc = SUCCESS;
|
|
||||||
unsigned int time_left;
|
unsigned int time_left;
|
||||||
|
|
||||||
io_req->wait_for_comp = 1;
|
io_req->wait_for_comp = 1;
|
||||||
@@ -1110,7 +1109,7 @@ static int bnx2fc_abts_cleanup(struct bnx2fc_cmd *io_req)
|
|||||||
kref_put(&io_req->refcount, bnx2fc_cmd_release);
|
kref_put(&io_req->refcount, bnx2fc_cmd_release);
|
||||||
|
|
||||||
spin_lock_bh(&tgt->tgt_lock);
|
spin_lock_bh(&tgt->tgt_lock);
|
||||||
return rc;
|
return SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user