[media] stb6100: Properly retrieve symbol rate
authorMauro Carvalho Chehab <mchehab@redhat.com>
Sat, 31 Dec 2011 19:24:19 +0000 (17:24 -0200)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Sat, 31 Dec 2011 19:26:23 +0000 (17:26 -0200)
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/dvb/frontends/stb6100.c

index 2d7c901905ba03f93a6b704faad66e0206260110..def88abb30bf14b630f5110bf39732881159a2da 100644 (file)
@@ -327,7 +327,7 @@ static int stb6100_set_frequency(struct dvb_frontend *fe, u32 frequency)
        int rc;
        const struct stb6100_lkup *ptr;
        struct stb6100_state *state = fe->tuner_priv;
-       struct dtv_frontend_properties p;
+       struct dtv_frontend_properties *p = &fe->dtv_property_cache;
 
        u32 srate = 0, fvco, nint, nfrac;
        u8 regs[STB6100_NUMREGS];
@@ -339,7 +339,7 @@ static int stb6100_set_frequency(struct dvb_frontend *fe, u32 frequency)
                dprintk(verbose, FE_DEBUG, 1, "Get frontend parameters");
                fe->ops.get_frontend(fe);
        }
-       srate = p.symbol_rate;
+       srate = p->symbol_rate;
 
        /* Set up tuner cleanly, LPF calibration on */
        rc = stb6100_write_reg(state, STB6100_FCCK, 0x4d | STB6100_FCCK_FCCK);
This page took 0.033174 seconds and 5 git commands to generate.