Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

[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>

authored by

Dan Carpenter and committed by
Mauro Carvalho Chehab
58632818 fcb388ce

+1 -1
+1 -1
drivers/media/dvb-frontends/tda18271c2dd.c
··· 1030 1030 state->m_Regs[EP4] = state->m_EP4 | state->m_IFLevelDigital; 1031 1031 1032 1032 if ((Standard == HF_FM_Radio) && state->m_bFMInput) 1033 - state->m_Regs[EP4] |= 80; 1033 + state->m_Regs[EP4] |= 0x80; 1034 1034 1035 1035 state->m_Regs[MPD] &= ~0x80; 1036 1036 if (Standard > HF_AnalogMax)