All of lore.kernel.org
 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 3/4] sis5513: clear prefetch and postwrite for ATAPI devices
Date: Mon, 03 Sep 2007 18:04:28 +0400	[thread overview]
Message-ID: <46DC146C.8050307@ru.mvista.com> (raw)
In-Reply-To: <200708092214.18015.bzolnier@gmail.com>

Bartlomiej Zolnierkiewicz wrote:

> Clear prefetch and postwrite for ATAPI devices instead of depending on BIOS.

> Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>

Acked-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>

> Index: b/drivers/ide/pci/sis5513.c
> ===================================================================
> --- a/drivers/ide/pci/sis5513.c
> +++ b/drivers/ide/pci/sis5513.c
> @@ -1,5 +1,5 @@
>  /*
> - * linux/drivers/ide/pci/sis5513.c	Version 0.29	Aug 1, 2007
> + * linux/drivers/ide/pci/sis5513.c	Version 0.30	Aug 9, 2007

    Oh, the driver turned 0.30! Insn't a time for party? ;-)

> @@ -522,20 +522,19 @@ static void sis_program_timings(ide_driv
>  		sis_ata133_program_timings(drive, mode);
>  }
>  
> -/* Enables per-drive prefetch and postwrite */
>  static void config_drive_art_rwp (ide_drive_t *drive)
>  {
>  	ide_hwif_t *hwif	= HWIF(drive);
>  	struct pci_dev *dev	= hwif->pci_dev;
> -
>  	u8 reg4bh		= 0;
> -	u8 rw_prefetch		= (0x11 << drive->dn);
> +	u8 rw_prefetch		= 0;
>  
> -	if (drive->media != ide_disk)
> -		return;
>  	pci_read_config_byte(dev, 0x4b, &reg4bh);
>  
> -	if ((reg4bh & rw_prefetch) != rw_prefetch)
> +	if (drive->media == ide_disk)
> +		rw_prefetch = 0x11 << drive->dn;
> +
> +	if ((reg4bh & (0x11 << drive->dn)) != rw_prefetch)
>  		pci_write_config_byte(dev, 0x4b, reg4bh|rw_prefetch);

    ... except of | operator's style. ;-)

      reply	other threads:[~2007-09-03 14:01 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-08-09 20:14 [PATCH 3/4] sis5513: clear prefetch and postwrite for ATAPI devices Bartlomiej Zolnierkiewicz
2007-09-03 14:04 ` Sergei Shtylyov [this message]

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=46DC146C.8050307@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.