Gitweb:
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=6881647cce09931f3d787ab83b5250436427ceb9
Commit: 6881647cce09931f3d787ab83b5250436427ceb9
Parent: 14d5deba2737c59444e805c10764d58a3d73e9b2
Author: Michael Krufky <[EMAIL PROTECTED]>
AuthorDate: Sat Dec 8 16:25:41 2007 -0300
Committer: Mauro Carvalho Chehab <[EMAIL PROTECTED]>
CommitDate: Fri Jan 25 19:03:27 2008 -0200
V4L/DVB (6782): tda8290: access frontend structure directly, where possible
Signed-off-by: Michael Krufky <[EMAIL PROTECTED]>
Signed-off-by: Mauro Carvalho Chehab <[EMAIL PROTECTED]>
---
drivers/media/video/tda8290.c | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/drivers/media/video/tda8290.c b/drivers/media/video/tda8290.c
index 09efb6a..d5517bc 100644
--- a/drivers/media/video/tda8290.c
+++ b/drivers/media/video/tda8290.c
@@ -587,7 +587,7 @@ 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)
@@ -595,14 +595,14 @@ static int tda829x_find_tuner(struct dvb_frontend *fe)
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);
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html