Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=67d52e29032dd2f21d4080331f47a21205f337f6
Commit:     67d52e29032dd2f21d4080331f47a21205f337f6
Parent:     de7234bb05a8498c5092385d3f1dd9e73cd332d0
Author:     Michael Krufky <[EMAIL PROTECTED]>
AuthorDate: Mon Dec 24 16:05:39 2007 -0300
Committer:  Mauro Carvalho Chehab <[EMAIL PROTECTED]>
CommitDate: Fri Jan 25 19:04:23 2008 -0200

    V4L/DVB (6920): tuner: fix backwards logic in check for set_config
    
    tuner-core was checking if analog_ops->set_config is set.  If set, it would
    complain that it isn't.  Fix this backwards logic to the proper behavior.
    
    Signed-off-by: Michael Krufky <[EMAIL PROTECTED]>
    Signed-off-by: Mauro Carvalho Chehab <[EMAIL PROTECTED]>
---
 drivers/media/video/tuner-core.c |    5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/drivers/media/video/tuner-core.c b/drivers/media/video/tuner-core.c
index f792871..67b9ed1 100644
--- a/drivers/media/video/tuner-core.c
+++ b/drivers/media/video/tuner-core.c
@@ -855,12 +855,11 @@ static int tuner_command(struct i2c_client *client, 
unsigned int cmd, void *arg)
                        break;
 
                if (analog_ops->set_config) {
-                       tuner_warn("Tuner frontend module has no way to "
-                                  "set config\n");
+                       analog_ops->set_config(&t->fe, cfg->priv);
                        break;
                }
 
-               analog_ops->set_config(&t->fe, cfg->priv);
+               tuner_dbg("Tuner frontend module has no way to set config\n");
                break;
        }
        /* --- v4l ioctls --- */
-
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