Commit 149709f5 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

[media] dvb-core: preserve the delivery system at cache clear

The changeset 240ab508 is incomplete, as the first thing that
happens at cache clear is to do a memset with 0 to the cache.

So, the delivery system needs to be explicitly preserved there.
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent f4b1952a
......@@ -904,8 +904,11 @@ static int dvb_frontend_clear_cache(struct dvb_frontend *fe)
{
struct dtv_frontend_properties *c = &fe->dtv_property_cache;
int i;
u32 delsys;
delsys = c->delivery_system;
memset(c, 0, sizeof(struct dtv_frontend_properties));
c->delivery_system = delsys;
c->state = DTV_CLEAR;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment