diff options
Diffstat (limited to 'drivers/ata/libata-core.c')
| -rw-r--r-- | drivers/ata/libata-core.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/ata/libata-core.c b/drivers/ata/libata-core.c index d37ab6087f2f..04db0f2c683a 100644 --- a/drivers/ata/libata-core.c +++ b/drivers/ata/libata-core.c @@ -4938,8 +4938,8 @@ void ata_qc_complete(struct ata_queued_cmd *qc)  		if (qc->result_tf.status & ATA_SENSE &&  		    ((ata_is_ncq(qc->tf.protocol) &&  		      dev->flags & ATA_DFLAG_CDL_ENABLED) || -		     (!(ata_is_ncq(qc->tf.protocol) && -			ata_id_sense_reporting_enabled(dev->id))))) { +		     (!ata_is_ncq(qc->tf.protocol) && +		      ata_id_sense_reporting_enabled(dev->id)))) {  			/*  			 * Tell SCSI EH to not overwrite scmd->result even if  			 * this command is finished with result SAM_STAT_GOOD.  |