Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 76560
b: refs/heads/master
c: 6881647
h: refs/heads/master
v: v3
  • Loading branch information
Michael Krufky authored and Mauro Carvalho Chehab committed Jan 25, 2008
1 parent 078bd58 commit 53b4483
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 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: 14d5deba2737c59444e805c10764d58a3d73e9b2
refs/heads/master: 6881647cce09931f3d787ab83b5250436427ceb9
12 changes: 6 additions & 6 deletions trunk/drivers/media/video/tda8290.c
Original file line number Diff line number Diff line change
Expand Up @@ -587,22 +587,22 @@ static int tda829x_find_tuner(struct dvb_frontend *fe)

if (data == 0x83) {
priv->ver |= TDA18271;
tda18271_attach(&t->fe, priv->tda827x_addr,
tda18271_attach(fe, priv->tda827x_addr,
priv->i2c_props.adap);
} else {
if ((data & 0x3c) == 0)
priv->ver |= TDA8275;
else
priv->ver |= TDA8275A;

tda827x_attach(&t->fe, priv->tda827x_addr,
tda827x_attach(fe, priv->tda827x_addr,
priv->i2c_props.adap, &priv->cfg);
}
if (t->fe.ops.tuner_ops.init)
t->fe.ops.tuner_ops.init(&t->fe);
if (fe->ops.tuner_ops.init)
fe->ops.tuner_ops.init(fe);

if (t->fe.ops.tuner_ops.sleep)
t->fe.ops.tuner_ops.sleep(&t->fe);
if (fe->ops.tuner_ops.sleep)
fe->ops.tuner_ops.sleep(fe);

ops->i2c_gate_ctrl(fe, 0);

Expand Down

0 comments on commit 53b4483

Please sign in to comment.