mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
V4L/DVB (10413): Bug fix: Restore HVR-4000 tuning.
Some cards uses cx24116 LNB_DC pin for LNB power control, some not uses, some uses it different way, like HVR-4000. Tested-by : Edgar Hucek <gimli@dark-green.com> Signed-off-by: Igor M. Liplianin <liplianin@me.by> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
e230b22b59
commit
8afe6ad617
1 changed files with 6 additions and 1 deletions
|
@ -1167,7 +1167,12 @@ static int cx24116_initfe(struct dvb_frontend *fe)
|
|||
if (ret != 0)
|
||||
return ret;
|
||||
|
||||
return cx24116_diseqc_init(fe);
|
||||
ret = cx24116_diseqc_init(fe);
|
||||
if (ret != 0)
|
||||
return ret;
|
||||
|
||||
/* HVR-4000 needs this */
|
||||
return cx24116_set_voltage(fe, SEC_VOLTAGE_13);
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue