aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/dvb-frontends/tda18271c2dd.c
diff options
context:
space:
mode:
authorDan Carpenter <dan.carpenter@oracle.com>2014-02-06 04:49:47 -0300
committerMauro Carvalho Chehab <m.chehab@samsung.com>2014-07-22 21:00:54 -0300
commit58632818ab7bc627eb1273c1f3525e2819a07b01 (patch)
tree2f1f8b822ae2f43a7ca8e7885353ff42bf8888e8 /drivers/media/dvb-frontends/tda18271c2dd.c
parent[media] si2168: Fix a badly solved merge conflict (diff)
downloadlinux-dev-58632818ab7bc627eb1273c1f3525e2819a07b01.tar.xz
linux-dev-58632818ab7bc627eb1273c1f3525e2819a07b01.zip
[media] dvb-frontends: decimal vs hex typo in ChannelConfiguration()
>From the context this should be hex 0x80 instead of decimal 80. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
Diffstat (limited to 'drivers/media/dvb-frontends/tda18271c2dd.c')
-rw-r--r--drivers/media/dvb-frontends/tda18271c2dd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb-frontends/tda18271c2dd.c b/drivers/media/dvb-frontends/tda18271c2dd.c
index 2c54586ac07f..de0a1c110972 100644
--- a/drivers/media/dvb-frontends/tda18271c2dd.c
+++ b/drivers/media/dvb-frontends/tda18271c2dd.c
@@ -1030,7 +1030,7 @@ static int ChannelConfiguration(struct tda_state *state,
state->m_Regs[EP4] = state->m_EP4 | state->m_IFLevelDigital;
if ((Standard == HF_FM_Radio) && state->m_bFMInput)
- state->m_Regs[EP4] |= 80;
+ state->m_Regs[EP4] |= 0x80;
state->m_Regs[MPD] &= ~0x80;
if (Standard > HF_AnalogMax)