提交 6881647c 编写于 作者: M Michael Krufky 提交者: Mauro Carvalho Chehab

V4L/DVB (6782): tda8290: access frontend structure directly, where possible

Signed-off-by: NMichael Krufky <mkrufky@linuxtv.org>
Signed-off-by: NMauro Carvalho Chehab <mchehab@infradead.org>
上级 14d5deba
...@@ -587,7 +587,7 @@ static int tda829x_find_tuner(struct dvb_frontend *fe) ...@@ -587,7 +587,7 @@ static int tda829x_find_tuner(struct dvb_frontend *fe)
if (data == 0x83) { if (data == 0x83) {
priv->ver |= TDA18271; priv->ver |= TDA18271;
tda18271_attach(&t->fe, priv->tda827x_addr, tda18271_attach(fe, priv->tda827x_addr,
priv->i2c_props.adap); priv->i2c_props.adap);
} else { } else {
if ((data & 0x3c) == 0) if ((data & 0x3c) == 0)
...@@ -595,14 +595,14 @@ static int tda829x_find_tuner(struct dvb_frontend *fe) ...@@ -595,14 +595,14 @@ static int tda829x_find_tuner(struct dvb_frontend *fe)
else else
priv->ver |= TDA8275A; priv->ver |= TDA8275A;
tda827x_attach(&t->fe, priv->tda827x_addr, tda827x_attach(fe, priv->tda827x_addr,
priv->i2c_props.adap, &priv->cfg); priv->i2c_props.adap, &priv->cfg);
} }
if (t->fe.ops.tuner_ops.init) if (fe->ops.tuner_ops.init)
t->fe.ops.tuner_ops.init(&t->fe); fe->ops.tuner_ops.init(fe);
if (t->fe.ops.tuner_ops.sleep) if (fe->ops.tuner_ops.sleep)
t->fe.ops.tuner_ops.sleep(&t->fe); fe->ops.tuner_ops.sleep(fe);
ops->i2c_gate_ctrl(fe, 0); ops->i2c_gate_ctrl(fe, 0);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册