[PATCH] video/tuner: add VIDEO_G_FREQUENCY and freq range to VIDIOC_G_TUNER
authorJiri Benc <jbenc@suse.cz>
Sat, 7 May 2005 04:30:42 +0000 (21:30 -0700)
committerLinus Torvalds <torvalds@ppc970.osdl.org>
Sat, 7 May 2005 05:09:28 +0000 (22:09 -0700)
This patch adds a VIDIOC_G_FREQUENCY command to tuner-core.c and sets
lowest and highest tunable frequencies in v4l2_tuner structure returned by
VIDIOC_G_TUNER command.

Signed-off-by: Jiri Benc <jbenc@suse.cz>
Cc: Gerd Knorr <kraxel@bytesex.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
drivers/media/video/tuner-core.c

index c7d0c9f..6212388 100644 (file)
@@ -360,6 +360,15 @@ tuner_command(struct i2c_client *client, unsigned int cmd, void *arg)
                set_freq(client,f->frequency);
                break;
        }
+       case VIDIOC_G_FREQUENCY:
+       {
+               struct v4l2_frequency *f = arg;
+
+               SWITCH_V4L2;
+               f->type = t->mode;
+               f->frequency = t->freq;
+               break;
+       }
        case VIDIOC_G_TUNER:
        {
                struct v4l2_tuner *tuner = arg;
@@ -367,6 +376,8 @@ tuner_command(struct i2c_client *client, unsigned int cmd, void *arg)
                SWITCH_V4L2;
                if (V4L2_TUNER_RADIO == t->mode  &&  t->has_signal)
                        tuner->signal = t->has_signal(client);
+               tuner->rangelow = tv_range[0] * 16;
+               tuner->rangehigh = tv_range[1] * 16;
                break;
        }
        default: