scsi: mpt3sas: Fix indentation
Modify the indentation such that smatch no longer complains about inconsistent indenting. Signed-off-by: Bart Van Assche <bart.vanassche@wdc.com> Cc: Sathya Prakash <sathya.prakash@broadcom.com> Cc: Chaitra P B <chaitra.basappa@broadcom.com> Cc: Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
parent
2fa4a32613
commit
199fd79a11
@ -4673,19 +4673,19 @@ scsih_qcmd(struct Scsi_Host *shost, struct scsi_cmnd *scmd)
|
||||
}
|
||||
|
||||
|
||||
if (ioc->shost_recovery || ioc->ioc_link_reset_in_progress) {
|
||||
/* host recovery or link resets sent via IOCTLs */
|
||||
if (ioc->shost_recovery || ioc->ioc_link_reset_in_progress)
|
||||
return SCSI_MLQUEUE_HOST_BUSY;
|
||||
|
||||
} else if (sas_target_priv_data->deleted) {
|
||||
/* device has been deleted */
|
||||
else if (sas_target_priv_data->deleted) {
|
||||
scmd->result = DID_NO_CONNECT << 16;
|
||||
scmd->scsi_done(scmd);
|
||||
return 0;
|
||||
/* device busy with task management */
|
||||
} else if (sas_target_priv_data->tm_busy ||
|
||||
sas_device_priv_data->block)
|
||||
sas_device_priv_data->block) {
|
||||
/* device busy with task management */
|
||||
return SCSI_MLQUEUE_DEVICE_BUSY;
|
||||
}
|
||||
|
||||
/*
|
||||
* Bug work around for firmware SATL handling. The loop
|
||||
|
Loading…
x
Reference in New Issue
Block a user