Commit 835bf82c authored by Antti Palosaari's avatar Antti Palosaari Committed by Mauro Carvalho Chehab

[media] tda18212: implement .get_if_frequency()

Signed-off-by: default avatarAntti Palosaari <crope@iki.fi>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent ed940514
...@@ -25,6 +25,8 @@ ...@@ -25,6 +25,8 @@
struct tda18212_priv { struct tda18212_priv {
struct tda18212_config *cfg; struct tda18212_config *cfg;
struct i2c_adapter *i2c; struct i2c_adapter *i2c;
u32 if_frequency;
}; };
#define dbg(fmt, arg...) \ #define dbg(fmt, arg...) \
...@@ -235,6 +237,9 @@ static int tda18212_set_params(struct dvb_frontend *fe, ...@@ -235,6 +237,9 @@ static int tda18212_set_params(struct dvb_frontend *fe,
if (ret) if (ret)
goto error; goto error;
/* actual IF rounded as it is on register */
priv->if_frequency = buf[3] * 50 * 1000;
exit: exit:
if (fe->ops.i2c_gate_ctrl) if (fe->ops.i2c_gate_ctrl)
fe->ops.i2c_gate_ctrl(fe, 0); /* close I2C-gate */ fe->ops.i2c_gate_ctrl(fe, 0); /* close I2C-gate */
...@@ -246,6 +251,15 @@ static int tda18212_set_params(struct dvb_frontend *fe, ...@@ -246,6 +251,15 @@ static int tda18212_set_params(struct dvb_frontend *fe,
goto exit; goto exit;
} }
static int tda18212_get_if_frequency(struct dvb_frontend *fe, u32 *frequency)
{
struct tda18212_priv *priv = fe->tuner_priv;
*frequency = priv->if_frequency;
return 0;
}
static int tda18212_release(struct dvb_frontend *fe) static int tda18212_release(struct dvb_frontend *fe)
{ {
kfree(fe->tuner_priv); kfree(fe->tuner_priv);
...@@ -265,6 +279,7 @@ static const struct dvb_tuner_ops tda18212_tuner_ops = { ...@@ -265,6 +279,7 @@ static const struct dvb_tuner_ops tda18212_tuner_ops = {
.release = tda18212_release, .release = tda18212_release,
.set_params = tda18212_set_params, .set_params = tda18212_set_params,
.get_if_frequency = tda18212_get_if_frequency,
}; };
struct dvb_frontend *tda18212_attach(struct dvb_frontend *fe, struct dvb_frontend *tda18212_attach(struct dvb_frontend *fe,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment