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

Commit 9728686f authored by Kleber Sacilotto de Souza's avatar Kleber Sacilotto de Souza Committed by James Bottomley
Browse files

[SCSI] ipr: trivial: fix small coding style issues

parent 744abef1
Loading
Loading
Loading
Loading
+33 −33
Original line number Diff line number Diff line
@@ -4734,7 +4734,7 @@ static int ipr_device_reset(struct ipr_ioa_cfg *ioa_cfg,
	}

	LEAVE;
	return (IPR_IOASC_SENSE_KEY(ioasc) ? -EIO : 0);
	return IPR_IOASC_SENSE_KEY(ioasc) ? -EIO : 0;
}

/**
@@ -4844,7 +4844,7 @@ static int __ipr_eh_dev_reset(struct scsi_cmnd * scsi_cmd)
	res->resetting_device = 0;

	LEAVE;
	return (rc ? FAILED : SUCCESS);
	return rc ? FAILED : SUCCESS;
}

static int ipr_eh_dev_reset(struct scsi_cmnd *cmd)
@@ -5012,7 +5012,7 @@ static int ipr_cancel_op(struct scsi_cmnd * scsi_cmd)
		res->needs_sync_complete = 1;

	LEAVE;
	return (IPR_IOASC_SENSE_KEY(ioasc) ? FAILED : SUCCESS);
	return IPR_IOASC_SENSE_KEY(ioasc) ? FAILED : SUCCESS;
}

/**