This is an automatic generated email to let you know that the following patch 
were queued at the 
http://git.linuxtv.org/media_tree.git tree:

Subject: [media] tuner-core: handle errors when getting signal strength/afc
Author:  Mauro Carvalho Chehab <[email protected]>
Date:    Mon Mar 25 09:55:59 2013 -0300

If those callbacks fail, it should return zero, and not a random
value. The previous code assumed that all drivers would only change
signal strength if it succeeds, but this may not be true.

Signed-off-by: Mauro Carvalho Chehab <[email protected]>

 drivers/media/v4l2-core/tuner-core.c |   10 ++++++----
 1 files changed, 6 insertions(+), 4 deletions(-)

---

http://git.linuxtv.org/media_tree.git?a=commitdiff;h=004e45d736bfe62159bd4dc1549eff414bd27496

diff --git a/drivers/media/v4l2-core/tuner-core.c 
b/drivers/media/v4l2-core/tuner-core.c
index f1e8b40..cf9a9af 100644
--- a/drivers/media/v4l2-core/tuner-core.c
+++ b/drivers/media/v4l2-core/tuner-core.c
@@ -220,18 +220,20 @@ static void fe_standby(struct dvb_frontend *fe)
 
 static int fe_has_signal(struct dvb_frontend *fe)
 {
-       u16 strength = 0;
+       u16 strength;
 
-       fe->ops.tuner_ops.get_rf_strength(fe, &strength);
+       if (fe->ops.tuner_ops.get_rf_strength(fe, &strength) < 0)
+               return 0;
 
        return strength;
 }
 
 static int fe_get_afc(struct dvb_frontend *fe)
 {
-       s32 afc = 0;
+       s32 afc;
 
-       fe->ops.tuner_ops.get_afc(fe, &afc);
+       if (fe->ops.tuner_ops.get_afc(fe, &afc) < 0)
+               return 0;
 
        return afc;
 }

_______________________________________________
linuxtv-commits mailing list
[email protected]
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits

Reply via email to