From: Michael Krufky <mkrufky@linuxtv.org>
To: Mauro Carvalho Chehab <mchehab@infradead.org>
Cc: Linux Media Mailing List <linux-media@vger.kernel.org>,
Andrew Morton <akpm@linux-foundation.org>,
Roel Kluin <roel.kluin@gmail.com>
Subject: Re: Fw: [PATCH] V4L: missing parentheses?
Date: Wed, 18 Feb 2009 17:38:23 -0500 [thread overview]
Message-ID: <499C8DDF.6050804@linuxtv.org> (raw)
In-Reply-To: <20090218075024.1fa03027@pedra.chehab.org>
Yes, Please merge this Mauro.
Thank you :-)
Acked-by: Michael Krufky <mkrufky@linuxtv.org>
Strange, I didn't get the original mail, but I got Mauro's replies...
Oh well.
Cheers,
Mike
Mauro Carvalho Chehab wrote:
> Patch resent to the proper ML, in order to be handled by patchwork.
>
> Michael,
> The patch seems ok to my eyes. Please ack if ok for you to apply it.
>
> Forwarded message:
>
> Date: Wed, 18 Feb 2009 10:11:10 +0100
> From: Roel Kluin <roel.kluin@gmail.com>
> To: Michael Krufky <mkrufky@linuxtv.org>
> Cc: Mauro Carvalho Chehab <mchehab@infradead.org>, video4linux-list@redhat.com, Andrew Morton <akpm@linux-foundation.org>
> Subject: [PATCH] V4L: missing parentheses?
>
>
> Please review.
> --------------------------->8-------------8<------------------------------
> Add missing parentheses
>
> Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
> ---
> diff --git a/drivers/media/common/tuners/tda18271-common.c b/drivers/media/common/tuners/tda18271-common.c
> index 6fb5b45..fc76c30 100644
> --- a/drivers/media/common/tuners/tda18271-common.c
> +++ b/drivers/media/common/tuners/tda18271-common.c
> @@ -490,9 +490,9 @@ int tda18271_set_standby_mode(struct dvb_frontend *fe,
> tda_dbg("sm = %d, sm_lt = %d, sm_xt = %d\n", sm, sm_lt, sm_xt);
>
> regs[R_EP3] &= ~0xe0; /* clear sm, sm_lt, sm_xt */
> - regs[R_EP3] |= sm ? (1 << 7) : 0 |
> - sm_lt ? (1 << 6) : 0 |
> - sm_xt ? (1 << 5) : 0;
> + regs[R_EP3] |= (sm ? (1 << 7) : 0) |
> + (sm_lt ? (1 << 6) : 0) |
> + (sm_xt ? (1 << 5) : 0);
>
> return tda18271_write_regs(fe, R_EP3, 1);
> }
>
>
>
>
> Cheers,
> Mauro
>
prev parent reply other threads:[~2009-02-18 22:38 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-02-18 10:50 Fw: [PATCH] V4L: missing parentheses? Mauro Carvalho Chehab
2009-02-18 22:38 ` Michael Krufky [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=499C8DDF.6050804@linuxtv.org \
--to=mkrufky@linuxtv.org \
--cc=akpm@linux-foundation.org \
--cc=linux-media@vger.kernel.org \
--cc=mchehab@infradead.org \
--cc=roel.kluin@gmail.com \
/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