Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 285452
b: refs/heads/master
c: 8b80ff3
h: refs/heads/master
v: v3
  • Loading branch information
Mauro Carvalho Chehab committed Dec 31, 2011
1 parent 66af38e commit 508c5ae
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 14 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 0607d077809014082965061e9e88f38459c070ac
refs/heads/master: 8b80ff3ad52690d37e9617335ce9d66e6d4a92e5
16 changes: 4 additions & 12 deletions trunk/drivers/media/common/tuners/qt1010.c
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ static void qt1010_dump_regs(struct qt1010_priv *priv)
static int qt1010_set_params(struct dvb_frontend *fe,
struct dvb_frontend_parameters *params)
{
struct dtv_frontend_properties *c = &fe->dtv_property_cache;
struct qt1010_priv *priv;
int err;
u32 freq, div, mod1, mod2;
Expand Down Expand Up @@ -144,13 +145,11 @@ static int qt1010_set_params(struct dvb_frontend *fe,
#define FREQ2 4000000 /* 4 MHz Quartz oscillator in the stick? */

priv = fe->tuner_priv;
freq = params->frequency;
freq = c->frequency;
div = (freq + QT1010_OFFSET) / QT1010_STEP;
freq = (div * QT1010_STEP) - QT1010_OFFSET;
mod1 = (freq + QT1010_OFFSET) % FREQ1;
mod2 = (freq + QT1010_OFFSET) % FREQ2;
priv->bandwidth =
(fe->ops.info.type == FE_OFDM) ? params->u.ofdm.bandwidth : 0;
priv->frequency = freq;

if (fe->ops.i2c_gate_ctrl)
Expand Down Expand Up @@ -321,6 +320,7 @@ static int qt1010_init(struct dvb_frontend *fe)
{
struct qt1010_priv *priv = fe->tuner_priv;
struct dvb_frontend_parameters params;
struct dtv_frontend_properties *c = &fe->dtv_property_cache;
int err = 0;
u8 i, tmpval, *valptr = NULL;

Expand Down Expand Up @@ -397,7 +397,7 @@ static int qt1010_init(struct dvb_frontend *fe)
if ((err = qt1010_init_meas2(priv, i, &tmpval)))
return err;

params.frequency = 545000000; /* Sigmatek DVB-110 545000000 */
c->frequency = 545000000; /* Sigmatek DVB-110 545000000 */
/* MSI Megasky 580 GL861 533000000 */
return qt1010_set_params(fe, &params);
}
Expand All @@ -416,13 +416,6 @@ static int qt1010_get_frequency(struct dvb_frontend *fe, u32 *frequency)
return 0;
}

static int qt1010_get_bandwidth(struct dvb_frontend *fe, u32 *bandwidth)
{
struct qt1010_priv *priv = fe->tuner_priv;
*bandwidth = priv->bandwidth;
return 0;
}

static int qt1010_get_if_frequency(struct dvb_frontend *fe, u32 *frequency)
{
*frequency = 36125000;
Expand All @@ -443,7 +436,6 @@ static const struct dvb_tuner_ops qt1010_tuner_ops = {

.set_params = qt1010_set_params,
.get_frequency = qt1010_get_frequency,
.get_bandwidth = qt1010_get_bandwidth,
.get_if_frequency = qt1010_get_if_frequency,
};

Expand Down
1 change: 0 additions & 1 deletion trunk/drivers/media/common/tuners/qt1010_priv.h
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,6 @@ struct qt1010_priv {
u8 reg25_init_val;

u32 frequency;
u32 bandwidth;
};

#endif

0 comments on commit 508c5ae

Please sign in to comment.