diff options
Diffstat (limited to 'drivers/scsi/isci/request.c')
| -rw-r--r-- | drivers/scsi/isci/request.c | 8 | 
1 files changed, 2 insertions, 6 deletions
diff --git a/drivers/scsi/isci/request.c b/drivers/scsi/isci/request.c index 99d2930b18c..56e38096f0c 100644 --- a/drivers/scsi/isci/request.c +++ b/drivers/scsi/isci/request.c @@ -2723,13 +2723,9 @@ static void isci_process_stp_response(struct sas_task *task, struct dev_to_host_  	memcpy(resp->ending_fis, fis, sizeof(*fis));  	ts->buf_valid_size = sizeof(*resp); -	/* If the device fault bit is set in the status register, then -	 * set the sense data and return. -	 */ -	if (fis->status & ATA_DF) +	/* If an error is flagged let libata decode the fis */ +	if (ac_err_mask(fis->status))  		ts->stat = SAS_PROTO_RESPONSE; -	else if (fis->status & ATA_ERR) -		ts->stat = SAM_STAT_CHECK_CONDITION;  	else  		ts->stat = SAM_STAT_GOOD;  | 
