qd65xx: fix PIO mode selection
authorBartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Sun, 8 Jul 2007 13:21:58 +0000 (15:21 +0200)
committerBartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Sun, 8 Jul 2007 13:21:58 +0000 (15:21 +0200)
PIO4 is a maximum PIO mode supported by a driver.  Using "255" as a max_mode
argument to ide_get_best_pio_mode() could result in wrong timings being used
by a driver (for "pio" equal to 5) or OOPS (for "pio" values > 5 && < 255).

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Acked-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
Reviewed-by: Alan Cox <alan@lxorguk.ukuu.org.uk>
drivers/ide/legacy/qd65xx.c

index d1414a75b52371d707aa5375ec5ee4b1221e2ca5..7783745dd167de3cf39f7f7d9dee2b55c80964c3 100644 (file)
@@ -258,8 +258,7 @@ static void qd6580_tune_drive (ide_drive_t *drive, u8 pio)
        int recovery_time = 415; /* worst case values from the dos driver */
 
        if (drive->id && !qd_find_disk_type(drive, &active_time, &recovery_time)) {
-               pio = ide_get_best_pio_mode(drive, pio, 255, &d);
-               pio = min_t(u8, pio, 4);
+               pio = ide_get_best_pio_mode(drive, pio, 4, &d);
 
                switch (pio) {
                        case 0: break;
This page took 0.02999 seconds and 5 git commands to generate.