diff options
author | Tejun Heo <htejun@gmail.com> | 2006-05-15 11:57:21 (GMT) |
---|---|---|
committer | Tejun Heo <htejun@gmail.com> | 2006-05-15 11:57:21 (GMT) |
commit | c44078c03f018c8cc9d7463b0db4c6c7fb316792 (patch) | |
tree | 3f638ee85d7e1eb8e0951b581b51fdcec43ff9d6 /drivers/scsi | |
parent | ee7863bc68fa6ad6fe7cfcc0e5ebe9efe0c0664e (diff) | |
download | linux-fsl-qoriq-c44078c03f018c8cc9d7463b0db4c6c7fb316792.tar.xz |
[PATCH] libata: silly fix in ata_scsi_start_stop_xlat()
Don't directly access &qc->tf when tf == &qc->tf.
Signed-off-by: Tejun Heo <htejun@gmail.com>
Diffstat (limited to 'drivers/scsi')
-rw-r--r-- | drivers/scsi/libata-scsi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/libata-scsi.c b/drivers/scsi/libata-scsi.c index 9871f82..b0c83c2 100644 --- a/drivers/scsi/libata-scsi.c +++ b/drivers/scsi/libata-scsi.c @@ -748,7 +748,7 @@ static unsigned int ata_scsi_start_stop_xlat(struct ata_queued_cmd *qc, tf->nsect = 1; /* 1 sector, lba=0 */ if (qc->dev->flags & ATA_DFLAG_LBA) { - qc->tf.flags |= ATA_TFLAG_LBA; + tf->flags |= ATA_TFLAG_LBA; tf->lbah = 0x0; tf->lbam = 0x0; |