Skip to content

Commit

Permalink
[media] zl10036: use DVBv5 parameters on set_params()
Browse files Browse the repository at this point in the history
Instead of using DVBv3 parameters, rely on DVBv5 parameters to
set the tuner

Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
  • Loading branch information
Mauro Carvalho Chehab committed Dec 31, 2011
1 parent 80d8d49 commit f40d0f0
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions drivers/media/dvb/frontends/zl10036.c
Original file line number Diff line number Diff line change
Expand Up @@ -308,9 +308,10 @@ static int zl10036_set_gain_params(struct zl10036_state *state,
static int zl10036_set_params(struct dvb_frontend *fe,
struct dvb_frontend_parameters *params)
{
struct dtv_frontend_properties *p = &fe->dtv_property_cache;
struct zl10036_state *state = fe->tuner_priv;
int ret = 0;
u32 frequency = params->frequency;
u32 frequency = p->frequency;
u32 fbw;
int i;
u8 c;
Expand All @@ -326,7 +327,7 @@ static int zl10036_set_params(struct dvb_frontend *fe,
* fBW = (alpha*symbolrate)/(2*0.8)
* 1.35 / (2*0.8) = 27 / 32
*/
fbw = (27 * params->u.qpsk.symbol_rate) / 32;
fbw = (27 * p->symbol_rate) / 32;

/* scale to kHz */
fbw /= 1000;
Expand All @@ -353,7 +354,7 @@ static int zl10036_set_params(struct dvb_frontend *fe,
if (ret < 0)
goto error;

ret = zl10036_set_frequency(state, params->frequency);
ret = zl10036_set_frequency(state, p->frequency);
if (ret < 0)
goto error;

Expand Down

0 comments on commit f40d0f0

Please sign in to comment.