[SCSI] ipr: trivial: fix small coding style issues
Signed-off-by: Kleber Sacilotto de Souza <klebers@linux.vnet.ibm.com> Acked-by: Brian King <brking@linux.vnet.ibm.com> Signed-off-by: James Bottomley <JBottomley@Parallels.com>
This commit is contained in:
parent
744abef1ab
commit
9728686f17
|
@ -4734,7 +4734,7 @@ static int ipr_device_reset(struct ipr_ioa_cfg *ioa_cfg,
|
||||||
}
|
}
|
||||||
|
|
||||||
LEAVE;
|
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;
|
res->resetting_device = 0;
|
||||||
|
|
||||||
LEAVE;
|
LEAVE;
|
||||||
return (rc ? FAILED : SUCCESS);
|
return rc ? FAILED : SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int ipr_eh_dev_reset(struct scsi_cmnd *cmd)
|
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;
|
res->needs_sync_complete = 1;
|
||||||
|
|
||||||
LEAVE;
|
LEAVE;
|
||||||
return (IPR_IOASC_SENSE_KEY(ioasc) ? FAILED : SUCCESS);
|
return IPR_IOASC_SENSE_KEY(ioasc) ? FAILED : SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue