Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=63c254805e38bad4c64b5f5b0e135a2a357fa0bf
Commit:     63c254805e38bad4c64b5f5b0e135a2a357fa0bf
Parent:     22ee1250bd41534552c61be13994fd12d1ee1318
Author:     Michael Krufky <[EMAIL PROTECTED]>
AuthorDate: Fri Nov 23 15:08:11 2007 -0300
Committer:  Mauro Carvalho Chehab <[EMAIL PROTECTED]>
CommitDate: Fri Jan 25 19:02:59 2008 -0200

    V4L/DVB (6679): tda8290: force tuner init after attach
    
    Force tuner init after attach, then sleep until use.
    
    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 c606f3c..09efb6a 100644
--- a/drivers/media/video/tda8290.c
+++ b/drivers/media/video/tda8290.c
@@ -597,13 +597,13 @@ static int tda829x_find_tuner(struct dvb_frontend *fe)
 
                tda827x_attach(&t->fe, priv->tda827x_addr,
                               priv->i2c_props.adap, &priv->cfg);
-
-               /* FIXME: tda827x module doesn't probe the tuner until
-                * tda827x_initial_sleep is called
-                */
-               if (t->fe.ops.tuner_ops.sleep)
-                       t->fe.ops.tuner_ops.sleep(&t->fe);
        }
+       if (t->fe.ops.tuner_ops.init)
+               t->fe.ops.tuner_ops.init(&t->fe);
+
+       if (t->fe.ops.tuner_ops.sleep)
+               t->fe.ops.tuner_ops.sleep(&t->fe);
+
        ops->i2c_gate_ctrl(fe, 0);
 
        switch (priv->ver) {
-
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

Reply via email to