Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=006ed1ecf2c62659e5dd902350a7eb209b8a5257
Commit:     006ed1ecf2c62659e5dd902350a7eb209b8a5257
Parent:     cf04d29c4868a783b3e994e4a19f78ce22ba2d93
Author:     Michael Krufky <[EMAIL PROTECTED]>
AuthorDate: Wed Jan 9 10:44:27 2008 -0300
Committer:  Mauro Carvalho Chehab <[EMAIL PROTECTED]>
CommitDate: Fri Jan 25 19:04:45 2008 -0200

    V4L/DVB (6989): tda18271: clean up chip id logic in tda829x_release
    
    This test is easier to read.
    
    Signed-off-by: Michael Krufky <[EMAIL PROTECTED]>
    Signed-off-by: Mauro Carvalho Chehab <[EMAIL PROTECTED]>
---
 drivers/media/video/tda8290.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/media/video/tda8290.c b/drivers/media/video/tda8290.c
index 4ac7c04..3e593a3 100644
--- a/drivers/media/video/tda8290.c
+++ b/drivers/media/video/tda8290.c
@@ -504,9 +504,9 @@ static void tda829x_release(struct dvb_frontend *fe)
 {
        struct tda8290_priv *priv = fe->analog_demod_priv;
 
-       /* dont try to release the tuner
-        * if we didn't attach it from this module */
-       if ((priv->ver > TDA8290) && (priv->ver > TDA8295))
+       /* only try to release the tuner if we've
+        * attached it from within this module */
+       if (priv->ver & (TDA18271 | TDA8275 | TDA8275A))
                if (fe->ops.tuner_ops.release)
                        fe->ops.tuner_ops.release(fe);
 
-
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