Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 69abf61e authored by Saurav Kashyap's avatar Saurav Kashyap Committed by James Bottomley
Browse files

[SCSI] qla2xxx: Properly set the return value in qla2xxx_eh_abort function.



A return value is not set for the successful case and it has a garbage value.
This fix will set the default value to SUCCESS and in case of any failures
it is changed.

Signed-off-by: default avatarSaurav Kashyap <saurav.kashyap@qlogic.com>
Signed-off-by: default avatarMadhuranath Iyengar <Madhu.Iyengar@qlogic.com>
Signed-off-by: default avatarJames Bottomley <James.Bottomley@suse.de>
parent 087c621e
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -829,7 +829,7 @@ qla2xxx_eh_abort(struct scsi_cmnd *cmd)
{
{
	scsi_qla_host_t *vha = shost_priv(cmd->device->host);
	scsi_qla_host_t *vha = shost_priv(cmd->device->host);
	srb_t *sp;
	srb_t *sp;
	int ret;
	int ret = SUCCESS;
	unsigned int id, lun;
	unsigned int id, lun;
	unsigned long flags;
	unsigned long flags;
	int wait = 0;
	int wait = 0;