mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: "Ray Lee" <ray-lk@madrabbit.org>
To: "Roel Kluin" <12o3l@tiscali.nl>
Cc: lkml <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] fix incorrect test in trident_ac97_set(); sound/oss/trident.c
Date: Wed, 7 Nov 2007 10:43:56 -0800	[thread overview]
Message-ID: <2c0942db0711071043p7cd31f6di9031816c1fed81ca@mail.gmail.com> (raw)
In-Reply-To: <47320533.4020400@tiscali.nl>

On Nov 7, 2007 10:34 AM, Roel Kluin <12o3l@tiscali.nl> wrote:
> If count reaches zero, the loop ends, but the postfix decrement subtracts it.
> so, testing for 'count == 0' will not work.
>
> Signed-off-by: Roel Kluin <12o3l@tiscali.nl>
> ---
> diff --git a/sound/oss/trident.c b/sound/oss/trident.c
> index 96adc47..94b5fb4 100644
> --- a/sound/oss/trident.c
> +++ b/sound/oss/trident.c
> @@ -2939,7 +2939,7 @@ trident_ac97_set(struct ac97_codec *codec, u8 reg, u16 val)
>
>         data |= (mask | (reg & AC97_REG_ADDR));
>
> -       if (count == 0) {
> +       if (count == -1) {
>                 printk(KERN_ERR "trident: AC97 CODEC write timed out.\n");
>                 spin_unlock_irqrestore(&card->lock, flags);
>                 return;
> @@ -2999,7 +2999,7 @@ trident_ac97_get(struct ac97_codec *codec, u8 reg)
>         } while (count--);
>         spin_unlock_irqrestore(&card->lock, flags);
>
> -       if (count == 0) {
> +       if (count == -1) {
>                 printk(KERN_ERR "trident: AC97 CODEC read timed out.\n");
>                 data = 0;
>         }

You didn't test this: count is unsigned. Change the loop condition to
be --count instead.

Ray

  reply	other threads:[~2007-11-07 18:44 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-11-07 18:34 Roel Kluin
2007-11-07 18:43 ` Ray Lee [this message]
2007-11-07 18:50   ` Roel Kluin
2007-11-07 19:04     ` Ray Lee
2007-11-08  6:06       ` Muli Ben-Yehuda

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=2c0942db0711071043p7cd31f6di9031816c1fed81ca@mail.gmail.com \
    --to=ray-lk@madrabbit.org \
    --cc=12o3l@tiscali.nl \
    --cc=linux-kernel@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

all inboxes | Powered by JetHome®