mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 06:31:49 +00:00
scsi: ufs: ufshcd: Do not set COMMAND_COMPLETE
COMMAND_COMPLETE is defined as '0', so setting it is quite pointless. Link: https://lore.kernel.org/r/20210113090500.129644-24-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
7a64c81448
commit
db83d8a5c8
@ -4911,9 +4911,7 @@ ufshcd_scsi_cmd_status(struct ufshcd_lrb *lrbp, int scsi_status)
|
||||
ufshcd_copy_sense_data(lrbp);
|
||||
fallthrough;
|
||||
case SAM_STAT_GOOD:
|
||||
result |= DID_OK << 16 |
|
||||
COMMAND_COMPLETE << 8 |
|
||||
scsi_status;
|
||||
result |= DID_OK << 16 | scsi_status;
|
||||
break;
|
||||
case SAM_STAT_TASK_SET_FULL:
|
||||
case SAM_STAT_BUSY:
|
||||
|
Loading…
Reference in New Issue
Block a user