From: Albert Lee Date: Sat, 25 Mar 2006 10:18:15 +0000 (+0800) Subject: [PATCH] libata-dev: wait idle after reading the last data block X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=52a3220599647ba429fcbca2388ec35b850fa72f;p=mv-sheeva.git [PATCH] libata-dev: wait idle after reading the last data block Some CD-ROM drives are slow to clear DRQ, after the last data block is read by PIO. Use ata_wait_idle() after reading the last data block. Signed-off-by: Albert Lee Signed-off-by: Jeff Garzik --- diff --git a/drivers/scsi/libata-core.c b/drivers/scsi/libata-core.c index 59cb12993f9..5fdc3143ed1 100644 --- a/drivers/scsi/libata-core.c +++ b/drivers/scsi/libata-core.c @@ -3710,7 +3710,7 @@ fsm_start: (!(qc->tf.flags & ATA_TFLAG_WRITE))) { /* all data read */ ata_altstatus(ap); - status = ata_chk_status(ap); + status = ata_wait_idle(ap); goto fsm_start; } }