linux-ide.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Sergei Shtylyov <sshtylyov@ru.mvista.com>
To: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Cc: linux-ide@vger.kernel.org
Subject: Re: [PATCH 1/6] qd65xx: fix PIO mode selection
Date: Sat, 23 Jun 2007 22:13:15 +0400	[thread overview]
Message-ID: <467D62BB.2030305@ru.mvista.com> (raw)
In-Reply-To: <200706232002.07091.bzolnier@gmail.com>

Bartlomiej Zolnierkiewicz wrote:
> 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>

> ---
>  drivers/ide/legacy/qd65xx.c |    3 +--
>  1 file changed, 1 insertion(+), 2 deletions(-)
> 
> Index: b/drivers/ide/legacy/qd65xx.c
> ===================================================================
> --- a/drivers/ide/legacy/qd65xx.c
> +++ b/drivers/ide/legacy/qd65xx.c
> @@ -258,8 +258,7 @@ static void qd6580_tune_drive (ide_drive
>  	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;

MBR, Sergei

  reply	other threads:[~2007-06-23 18:11 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-06-23 18:02 [PATCH 1/6] qd65xx: fix PIO mode selection Bartlomiej Zolnierkiewicz
2007-06-23 18:13 ` Sergei Shtylyov [this message]
2007-06-23 19:42 ` Alan Cox
2007-06-23 19:48   ` Sergei Shtylyov
2007-06-23 22:08   ` Bartlomiej Zolnierkiewicz

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=467D62BB.2030305@ru.mvista.com \
    --to=sshtylyov@ru.mvista.com \
    --cc=bzolnier@gmail.com \
    --cc=linux-ide@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).