[media] af9015: enable 2nd TS flow control when dual mode

It needs to be enabled in order to get stream from slave af9013 demod.

Signed-off-by: Antti Palosaari <crope@iki.fi>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
This commit is contained in:
Antti Palosaari 2017-06-13 05:29:50 -03:00 committed by Mauro Carvalho Chehab
parent d83886ff11
commit e94db976b7
1 changed files with 13 additions and 2 deletions

View File

@ -1132,10 +1132,21 @@ static int af9015_init_endpoint(struct dvb_usb_device *d)
}
/* enable / disable mp2if2 */
if (state->dual_mode)
if (state->dual_mode) {
ret = af9015_set_reg_bit(d, 0xd50b, 0);
else
if (ret)
goto error;
ret = af9015_set_reg_bit(d, 0xd520, 4);
if (ret)
goto error;
} else {
ret = af9015_clear_reg_bit(d, 0xd50b, 0);
if (ret)
goto error;
ret = af9015_clear_reg_bit(d, 0xd520, 4);
if (ret)
goto error;
}
error:
if (ret)