mirror of
https://github.com/torvalds/linux.git
synced 2025-01-01 15:51:46 +00:00
[media] mantis_vp1033: use DVBv5 parameters on set_params()
Instead of using DVBv3 parameters, rely on DVBv5 parameters to set the tuner Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
93ce675c5c
commit
742905312a
@ -86,6 +86,7 @@ u8 lgtdqcs001f_inittab[] = {
|
||||
int lgtdqcs001f_tuner_set(struct dvb_frontend *fe,
|
||||
struct dvb_frontend_parameters *params)
|
||||
{
|
||||
struct dtv_frontend_properties *p = &fe->dtv_property_cache;
|
||||
struct mantis_pci *mantis = fe->dvb->priv;
|
||||
struct i2c_adapter *adapter = &mantis->adapter;
|
||||
|
||||
@ -95,14 +96,14 @@ int lgtdqcs001f_tuner_set(struct dvb_frontend *fe,
|
||||
|
||||
struct i2c_msg msg = {.addr = 0x61, .flags = 0, .buf = buf, .len = sizeof(buf)};
|
||||
|
||||
div = params->frequency / 250;
|
||||
div = p->frequency / 250;
|
||||
|
||||
buf[0] = (div >> 8) & 0x7f;
|
||||
buf[1] = div & 0xff;
|
||||
buf[2] = 0x83;
|
||||
buf[3] = 0xc0;
|
||||
|
||||
if (params->frequency < 1531000)
|
||||
if (p->frequency < 1531000)
|
||||
buf[3] |= 0x04;
|
||||
else
|
||||
buf[3] &= ~0x04;
|
||||
|
Loading…
Reference in New Issue
Block a user