From: Roel Kluin Date: Wed, 18 Feb 2009 09:11:10 +0000 (-0300) Subject: V4L/DVB (10657): [PATCH] V4L: missing parentheses? X-Git-Tag: v3.12-rc1~15594^2~465 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=51ca3bddf34bb6cdbdddd89f59fe3a0131d40eba;p=kernel%2Fkernel-generic.git V4L/DVB (10657): [PATCH] V4L: missing parentheses? Add missing parentheses Signed-off-by: Roel Kluin Acked-by: Michael Krufky Signed-off-by: Mauro Carvalho Chehab --- 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); }