Skip to content

Commit

Permalink
[media] rtl2832: do not filter out slave TS null packets
Browse files Browse the repository at this point in the history
Do not remove slave TS NULL padding PID (0x1fff) by default as
there is no real need. After that whole TS is passed to kernel sw
PID filter.

Signed-off-by: Antti Palosaari <crope@iki.fi>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
  • Loading branch information
Antti Palosaari authored and Mauro Carvalho Chehab committed Dec 23, 2015
1 parent 891e055 commit 4020c18
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions drivers/media/dvb-frontends/rtl2832.c
Original file line number Diff line number Diff line change
Expand Up @@ -1100,18 +1100,6 @@ static int rtl2832_enable_slave_ts(struct i2c_client *client)
if (ret)
goto err;

ret = rtl2832_bulk_write(client, 0x022, "\x01", 1);
if (ret)
goto err;

ret = rtl2832_bulk_write(client, 0x026, "\x1f", 1);
if (ret)
goto err;

ret = rtl2832_bulk_write(client, 0x027, "\xff", 1);
if (ret)
goto err;

ret = rtl2832_bulk_write(client, 0x192, "\x7f\xf7\xff", 3);
if (ret)
goto err;
Expand Down

0 comments on commit 4020c18

Please sign in to comment.