Commit 808d24d6 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

[media] dvb-core: don't clear stats at DTV_CLEAR

The stats are cleared by the frontend. Don't do it at DTV_CLEAR.
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 340e7696
...@@ -920,7 +920,7 @@ static int dvb_frontend_clear_cache(struct dvb_frontend *fe) ...@@ -920,7 +920,7 @@ static int dvb_frontend_clear_cache(struct dvb_frontend *fe)
u32 delsys; u32 delsys;
delsys = c->delivery_system; delsys = c->delivery_system;
memset(c, 0, sizeof(struct dtv_frontend_properties)); memset(c, 0, offsetof(struct dtv_frontend_properties, strength));
c->delivery_system = delsys; c->delivery_system = delsys;
c->state = DTV_CLEAR; 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