Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=11f65106adb25a9ef5b6d8911267b2365c97a759
Commit:     11f65106adb25a9ef5b6d8911267b2365c97a759
Parent:     68717583557341874b2eea4dea36635256e932b6
Author:     Hartmut Hackmann <[EMAIL PROTECTED]>
AuthorDate: Fri Apr 27 12:31:15 2007 -0300
Committer:  Mauro Carvalho Chehab <[EMAIL PROTECTED]>
CommitDate: Fri Apr 27 15:43:37 2007 -0300

    V4L/DVB (5320): Filled in limiting values in tda827x.c
    
    The parameters for minimum and maximum frequency were missing.
    Also added mail addresses of the module authors.
    
    Signed-off-by: Hartmut Hackmann <[EMAIL PROTECTED]>
    Signed-off-by: Mauro Carvalho Chehab <[EMAIL PROTECTED]>
---
 drivers/media/dvb/frontends/tda827x.c |   12 ++++++++++--
 1 files changed, 10 insertions(+), 2 deletions(-)

diff --git a/drivers/media/dvb/frontends/tda827x.c 
b/drivers/media/dvb/frontends/tda827x.c
index 1fa58c5..edf7a0a 100644
--- a/drivers/media/dvb/frontends/tda827x.c
+++ b/drivers/media/dvb/frontends/tda827x.c
@@ -399,6 +399,9 @@ static int tda827x_init(struct dvb_frontend *fe)
 static struct dvb_tuner_ops tda827xo_tuner_ops = {
        .info = {
                .name = "Philips TDA827X",
+               .frequency_min  =  55000000,
+               .frequency_max  = 860000000,
+               .frequency_step =    250000
        },
        .release = tda827x_release,
        .init = tda827x_init,
@@ -411,6 +414,9 @@ static struct dvb_tuner_ops tda827xo_tuner_ops = {
 static struct dvb_tuner_ops tda827xa_tuner_ops = {
        .info = {
                .name = "Philips TDA827XA",
+               .frequency_min  =  44000000,
+               .frequency_max  = 906000000,
+               .frequency_step =     62500
        },
        .release = tda827x_release,
        .init = tda827x_init,
@@ -461,6 +467,8 @@ struct dvb_frontend *tda827x_attach(struct dvb_frontend 
*fe, int addr,
                sb_msg[1] = 0x90;
        }
        fe->tuner_priv = priv;
+       if (fe->ops.i2c_gate_ctrl)
+               fe->ops.i2c_gate_ctrl(fe, 1);
        i2c_transfer(i2c, &msg, 1);
        return fe;
 }
@@ -470,8 +478,8 @@ module_param(debug, int, 0644);
 MODULE_PARM_DESC(debug, "Turn on/off frontend debugging (default:off).");
 
 MODULE_DESCRIPTION("DVB TDA827x driver");
-MODULE_AUTHOR("Hartmut Hackmann");
-MODULE_AUTHOR("Michael Krufky");
+MODULE_AUTHOR("Hartmut Hackmann <[EMAIL PROTECTED]>");
+MODULE_AUTHOR("Michael Krufky <[EMAIL PROTECTED]>");
 MODULE_LICENSE("GPL");
 
 /*
-
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