scsi: qla4xxx: Use standard SAM status definitions
Use standard SAM status definitions and drop the driver-defined ones. Link: https://lore.kernel.org/r/20210113090500.129644-14-hare@suse.de Reviewed-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Hannes Reinecke <hare@suse.de> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
parent
f55475891e
commit
35f1cad1f9
|
@ -1181,7 +1181,6 @@ struct status_entry {
|
|||
uint32_t handle; /* 04-07 */
|
||||
|
||||
uint8_t scsiStatus; /* 08 */
|
||||
#define SCSI_CHECK_CONDITION 0x02
|
||||
|
||||
uint8_t iscsiFlags; /* 09 */
|
||||
#define ISCSI_FLAG_RESIDUAL_UNDER 0x02
|
||||
|
|
|
@ -182,7 +182,7 @@ static void qla4xxx_status_entry(struct scsi_qla_host *ha,
|
|||
|
||||
cmd->result = DID_OK << 16 | scsi_status;
|
||||
|
||||
if (scsi_status != SCSI_CHECK_CONDITION)
|
||||
if (scsi_status != SAM_STAT_CHECK_CONDITION)
|
||||
break;
|
||||
|
||||
/* Copy Sense Data into sense buffer. */
|
||||
|
|
Loading…
Reference in New Issue