2
0
mirror of https://github.com/edk2-porting/linux-next.git synced 2024-12-25 13:43:55 +08:00

[media] dvb_frontend: better handle lna set errors

If an attempt to set LNA fails, restore the cache to LNA_AUTO,
in order to make it to reflect the current LNA status.

Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
This commit is contained in:
Mauro Carvalho Chehab 2014-02-16 06:36:17 -03:00
parent 52f7b00e64
commit e6876692ca

View File

@ -1882,6 +1882,8 @@ static int dtv_property_process_set(struct dvb_frontend *fe,
c->lna = tvp->u.data; c->lna = tvp->u.data;
if (fe->ops.set_lna) if (fe->ops.set_lna)
r = fe->ops.set_lna(fe); r = fe->ops.set_lna(fe);
if (r < 0)
c->lna = LNA_AUTO;
break; break;
default: default: