mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-25 05:34:00 +08:00
media: mn88472: reset stream ID reg if no PLP given
If the PLP given is NO_STREAM_ID_FILTER (~0u) don't try to set that into the PLP register. Set PLP to 0 instead. Signed-off-by: Olli Salonen <olli.salonen@iki.fi> Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
This commit is contained in:
parent
450694c3b9
commit
07d45a42fa
@ -377,7 +377,9 @@ static int mn88472_set_frontend(struct dvb_frontend *fe)
|
|||||||
ret = regmap_write(dev->regmap[1], 0xf6, 0x05);
|
ret = regmap_write(dev->regmap[1], 0xf6, 0x05);
|
||||||
if (ret)
|
if (ret)
|
||||||
goto err;
|
goto err;
|
||||||
ret = regmap_write(dev->regmap[2], 0x32, c->stream_id);
|
ret = regmap_write(dev->regmap[2], 0x32,
|
||||||
|
(c->stream_id == NO_STREAM_ID_FILTER) ? 0 :
|
||||||
|
c->stream_id );
|
||||||
if (ret)
|
if (ret)
|
||||||
goto err;
|
goto err;
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user