Skip to content

Commit

Permalink
[media] dvb-frontends: decimal vs hex typo in ChannelConfiguration()
Browse files Browse the repository at this point in the history
>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>
  • Loading branch information
Dan Carpenter authored and Mauro Carvalho Chehab committed Jul 23, 2014
1 parent fcb388c commit 5863281
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/media/dvb-frontends/tda18271c2dd.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 5863281

Please sign in to comment.