[media] mantis_vp1033: use DVBv5 parameters on set_params()
authorMauro Carvalho Chehab <mchehab@redhat.com>
Fri, 23 Dec 2011 10:01:06 +0000 (07:01 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Sat, 31 Dec 2011 10:37:56 +0000 (08:37 -0200)
Instead of using DVBv3 parameters, rely on DVBv5 parameters to
set the tuner

Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/dvb/mantis/mantis_vp1033.c

index 2ae0afa..dfaca2a 100644 (file)
@@ -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;