Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=1b29cedab9e69a6e4c9bba5f1981437b62be7bea
Commit:     1b29cedab9e69a6e4c9bba5f1981437b62be7bea
Parent:     4e9154b8a77d0f0f8f06857162823905612a50d7
Author:     Michael Krufky <[EMAIL PROTECTED]>
AuthorDate: Mon Oct 22 01:44:03 2007 -0300
Committer:  Mauro Carvalho Chehab <[EMAIL PROTECTED]>
CommitDate: Fri Jan 25 19:01:10 2008 -0200

    V4L/DVB (6441): tuner: clean up ops checking in tuner_status function
    
    Signed-off-by: Michael Krufky <[EMAIL PROTECTED]>
    Signed-off-by: Mauro Carvalho Chehab <[EMAIL PROTECTED]>
---
 drivers/media/video/tuner-core.c |   13 +++++++------
 1 files changed, 7 insertions(+), 6 deletions(-)

diff --git a/drivers/media/video/tuner-core.c b/drivers/media/video/tuner-core.c
index 805a2bd..3de03da 100644
--- a/drivers/media/video/tuner-core.c
+++ b/drivers/media/video/tuner-core.c
@@ -567,12 +567,13 @@ static void tuner_status(struct dvb_frontend *fe)
                if (tuner_status & TUNER_STATUS_STEREO)
                        tuner_info("Stereo:          yes\n");
        }
-       if ((ops) && (ops->has_signal)) {
-               tuner_info("Signal strength: %d\n", ops->has_signal(fe));
-       }
-       if ((ops) && (ops->is_stereo)) {
-               tuner_info("Stereo:          %s\n", ops->is_stereo(fe) ?
-                          "yes" : "no");
+       if (ops) {
+               if (ops->has_signal)
+                       tuner_info("Signal strength: %d\n",
+                                  ops->has_signal(fe));
+               if (ops->is_stereo)
+                       tuner_info("Stereo:          %s\n",
+                                  ops->is_stereo(fe) ? "yes" : "no");
        }
 }
 
-
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