]> git.openfabrics.org - ~shefty/rdma-dev.git/commitdiff
[media] qt1010: implement .get_if_frequency()
authorAntti Palosaari <crope@iki.fi>
Sun, 13 Nov 2011 04:07:42 +0000 (01:07 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Thu, 24 Nov 2011 19:53:17 +0000 (17:53 -0200)
Signed-off-by: Antti Palosaari <crope@iki.fi>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/common/tuners/qt1010.c

index 9f5dba244cb86e7e361e992bbd45fedd41b1a1f9..cd461c2a4c38e789b1afcc91c10f38d7fc1c73a6 100644 (file)
@@ -423,6 +423,12 @@ static int qt1010_get_bandwidth(struct dvb_frontend *fe, u32 *bandwidth)
        return 0;
 }
 
+static int qt1010_get_if_frequency(struct dvb_frontend *fe, u32 *frequency)
+{
+       *frequency = 36125000;
+       return 0;
+}
+
 static const struct dvb_tuner_ops qt1010_tuner_ops = {
        .info = {
                .name           = "Quantek QT1010",
@@ -437,7 +443,8 @@ static const struct dvb_tuner_ops qt1010_tuner_ops = {
 
        .set_params    = qt1010_set_params,
        .get_frequency = qt1010_get_frequency,
-       .get_bandwidth = qt1010_get_bandwidth
+       .get_bandwidth = qt1010_get_bandwidth,
+       .get_if_frequency = qt1010_get_if_frequency,
 };
 
 struct dvb_frontend * qt1010_attach(struct dvb_frontend *fe,