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: remove the legacy is_stereo() call
Author:  Mauro Carvalho Chehab <[email protected]>
Date:    Thu Feb 3 22:18:14 2011 -0300

Nobody is using this legacy call. Just remove it.

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

 drivers/media/dvb/dvb-core/dvb_frontend.h |    1 -
 drivers/media/video/tuner-core.c          |   10 ----------
 2 files changed, 0 insertions(+), 11 deletions(-)

---

http://git.linuxtv.org/media_tree.git?a=commitdiff;h=12b0bcc7b57dc117943eec4926a4e2329ff381a4

diff --git a/drivers/media/dvb/dvb-core/dvb_frontend.h 
b/drivers/media/dvb/dvb-core/dvb_frontend.h
index f9f19be..3b86050 100644
--- a/drivers/media/dvb/dvb-core/dvb_frontend.h
+++ b/drivers/media/dvb/dvb-core/dvb_frontend.h
@@ -239,7 +239,6 @@ struct analog_demod_ops {
        void (*set_params)(struct dvb_frontend *fe,
                           struct analog_parameters *params);
        int  (*has_signal)(struct dvb_frontend *fe);
-       int  (*is_stereo)(struct dvb_frontend *fe);
        int  (*get_afc)(struct dvb_frontend *fe);
        void (*tuner_status)(struct dvb_frontend *fe);
        void (*standby)(struct dvb_frontend *fe);
diff --git a/drivers/media/video/tuner-core.c b/drivers/media/video/tuner-core.c
index 6041c7d..912d8e8 100644
--- a/drivers/media/video/tuner-core.c
+++ b/drivers/media/video/tuner-core.c
@@ -682,9 +682,6 @@ static void tuner_status(struct dvb_frontend *fe)
        if (analog_ops->has_signal)
                tuner_info("Signal strength: %d\n",
                           analog_ops->has_signal(fe));
-       if (analog_ops->is_stereo)
-               tuner_info("Stereo:          %s\n",
-                          analog_ops->is_stereo(fe) ? "yes" : "no");
 }
 
 /* ---------------------------------------------------------------------- */
@@ -861,13 +858,6 @@ static int tuner_g_tuner(struct v4l2_subdev *sd, struct 
v4l2_tuner *vt)
                        (tuner_status & TUNER_STATUS_STEREO) ?
                        V4L2_TUNER_SUB_STEREO :
                        V4L2_TUNER_SUB_MONO;
-       } else {
-               if (analog_ops->is_stereo) {
-                       vt->rxsubchans =
-                               analog_ops->is_stereo(&t->fe) ?
-                               V4L2_TUNER_SUB_STEREO :
-                               V4L2_TUNER_SUB_MONO;
-               }
        }
        if (analog_ops->has_signal)
                vt->signal = analog_ops->has_signal(&t->fe);

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

Reply via email to