mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
media: dvb-frontends/tc90522: fix bit shift mistakes
GIT_AUTHOR_NAME=Akihiro TSUKADA GIT_AUTHOR_EMAIL=tskd08@gmail.com they were obviously wrong. Signed-off-by: Akihiro Tsukada <tskd08@gmail.com> Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
This commit is contained in:
parent
0872f4f4f1
commit
1c96f3deb6
1 changed files with 2 additions and 2 deletions
|
@ -352,7 +352,7 @@ static int tc90522t_get_frontend(struct dvb_frontend *fe,
|
|||
mode = 1;
|
||||
ret = reg_read(state, 0xb0, val, 1);
|
||||
if (ret == 0) {
|
||||
mode = (val[0] & 0xc0) >> 2;
|
||||
mode = (val[0] & 0xc0) >> 6;
|
||||
c->transmission_mode = tm_conv[mode];
|
||||
c->guard_interval = (val[0] & 0x30) >> 4;
|
||||
}
|
||||
|
@ -379,7 +379,7 @@ static int tc90522t_get_frontend(struct dvb_frontend *fe,
|
|||
}
|
||||
|
||||
/* layer B */
|
||||
v = (val[3] & 0x03) << 1 | (val[4] & 0xc0) >> 6;
|
||||
v = (val[3] & 0x03) << 2 | (val[4] & 0xc0) >> 6;
|
||||
if (v == 0x0f)
|
||||
c->layer[1].segment_count = 0;
|
||||
else {
|
||||
|
|
Loading…
Reference in a new issue