From: Alan Date: Thu, 7 Dec 2006 12:41:18 +0000 (+0000) Subject: [PATCH] libata: Incorrect timing computation for PIO5/6 X-Git-Tag: v3.12-rc1~32283^2~14^2~12^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fd3367af3d1212f645094c4b5c4d458bdd061475;p=kernel%2Fkernel-generic.git [PATCH] libata: Incorrect timing computation for PIO5/6 The ata timing computation code makes some mistakes in PIO5/6 because a check was not updated correctly when I put this support into the kernel. Signed-off-by: Alan Cox Signed-off-by: Jeff Garzik --- diff --git a/drivers/ata/libata-core.c b/drivers/ata/libata-core.c index d2e6863..011c0a8 100644 --- a/drivers/ata/libata-core.c +++ b/drivers/ata/libata-core.c @@ -2303,7 +2303,7 @@ int ata_timing_compute(struct ata_device *adev, unsigned short speed, * DMA cycle timing is slower/equal than the fastest PIO timing. */ - if (speed > XFER_PIO_4) { + if (speed > XFER_PIO_6) { ata_timing_compute(adev, adev->pio_mode, &p, T, UT); ata_timing_merge(&p, t, t, ATA_TIMING_ALL); }