public inbox for kernel-janitors@vger.kernel.org
 help / color / mirror / Atom feed
From: Takashi Iwai <tiwai@suse.de>
To: Dan Carpenter <dan.carpenter@oracle.com>
Cc: alsa-devel@alsa-project.org,
	Mauro Carvalho Chehab <mchehab@redhat.com>,
	Rusty Russell <rusty@rustcorp.com.au>,
	kernel-janitors@vger.kernel.org,
	Hans de Goede <hdegoede@redhat.com>,
	Hans Verkuil <hans.verkuil@cisco.com>
Subject: Re: [patch] ALSA: fm801: precedence bug in snd_fm801_tea575x_get_pins()
Date: Wed, 14 Nov 2012 08:35:28 +0000	[thread overview]
Message-ID: <s5hsj8coa3z.wl%tiwai@suse.de> (raw)
In-Reply-To: <20121114082354.GB31792@elgon.mountain>

At Wed, 14 Nov 2012 11:23:54 +0300,
Dan Carpenter wrote:
> 
> There is a precedence bug because | has higher precedence than ?:.  This
> code was cut and pasted and I fixed a similar bug a few days ago.
> 
> Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>

Thanks, applied.


Takashi

> 
> diff --git a/sound/pci/fm801.c b/sound/pci/fm801.c
> index cc2e91d..c5806f8 100644
> --- a/sound/pci/fm801.c
> +++ b/sound/pci/fm801.c
> @@ -767,9 +767,14 @@ static u8 snd_fm801_tea575x_get_pins(struct snd_tea575x *tea)
>  	struct fm801 *chip = tea->private_data;
>  	unsigned short reg = inw(FM801_REG(chip, GPIO_CTRL));
>  	struct snd_fm801_tea575x_gpio gpio = *get_tea575x_gpio(chip);
> -
> -	return  (reg & FM801_GPIO_GP(gpio.data)) ? TEA575X_DATA : 0 |
> -		(reg & FM801_GPIO_GP(gpio.most)) ? TEA575X_MOST : 0;
> +	u8 ret;
> +
> +	ret = 0;
> +	if (reg & FM801_GPIO_GP(gpio.data))
> +		ret |= TEA575X_DATA;
> +	if (reg & FM801_GPIO_GP(gpio.most))
> +		ret |= TEA575X_MOST;
> +	return ret;
>  }
>  
>  static void snd_fm801_tea575x_set_direction(struct snd_tea575x *tea, bool output)
> 

      reply	other threads:[~2012-11-14  8:35 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-11-14  8:23 [patch] ALSA: fm801: precedence bug in snd_fm801_tea575x_get_pins() Dan Carpenter
2012-11-14  8:35 ` Takashi Iwai [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=s5hsj8coa3z.wl%tiwai@suse.de \
    --to=tiwai@suse.de \
    --cc=alsa-devel@alsa-project.org \
    --cc=dan.carpenter@oracle.com \
    --cc=hans.verkuil@cisco.com \
    --cc=hdegoede@redhat.com \
    --cc=kernel-janitors@vger.kernel.org \
    --cc=mchehab@redhat.com \
    --cc=rusty@rustcorp.com.au \
    /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