[PATCH] libata-dev: Fix array index value in ata_rwcmd_protocol()

Signed-off-by: Albert Lee <albertcc@tw.ibm.com>

===
Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
This commit is contained in:
Albert Lee 2006-02-08 16:37:43 +08:00 committed by Jeff Garzik
parent f6ef65e6d0
commit aef9d533da
1 changed files with 1 additions and 1 deletions

View File

@ -611,7 +611,7 @@ int ata_rwcmd_protocol(struct ata_queued_cmd *qc)
} else if (lba48 && (qc->ap->flags & ATA_FLAG_PIO_LBA48)) {
/* Unable to use DMA due to host limitation */
tf->protocol = ATA_PROT_PIO;
index = dev->multi_count ? 0 : 4;
index = dev->multi_count ? 0 : 8;
} else {
tf->protocol = ATA_PROT_DMA;
index = 16;