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

Commit 203fa3fe authored by Kleber Sacilotto de Souza's avatar Kleber Sacilotto de Souza Committed by Jiri Kosina
Browse files

ipr: fix small coding style issues



Fixing small trivial coding style issues.

Signed-off-by: default avatarKleber Sacilotto de Souza <klebers@linux.vnet.ibm.com>
Acked-by: default avatarBrian King <brking@linux.vnet.ibm.com>
Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
parent 1557cc42
Loading
Loading
Loading
Loading
+33 −33
Original line number Diff line number Diff line
@@ -4701,7 +4701,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;
}

/**
@@ -4811,7 +4811,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)
@@ -4979,7 +4979,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;
}

/**