diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-01-20 17:58:36 +0100 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-02-21 16:34:44 +0100 |
commit | 243d8c0fd03c77051d0f6a634cbadb7bbe28a58a (patch) | |
tree | 6b674ac04a99440f0ea0179531d1c3c005617d74 /drivers/media/video/cx88/cx88-video.c | |
parent | V4L/DVB (5102): make videodev to auto-generate standards (diff) | |
download | linux-243d8c0fd03c77051d0f6a634cbadb7bbe28a58a.tar.xz linux-243d8c0fd03c77051d0f6a634cbadb7bbe28a58a.zip |
V4L/DVB (5103): Fix vidioc_g_tuner handling
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video/cx88/cx88-video.c')
-rw-r--r-- | drivers/media/video/cx88/cx88-video.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/media/video/cx88/cx88-video.c b/drivers/media/video/cx88/cx88-video.c index 8ba994273292..d388a42b5fbc 100644 --- a/drivers/media/video/cx88/cx88-video.c +++ b/drivers/media/video/cx88/cx88-video.c @@ -1301,6 +1301,8 @@ static int vidioc_g_tuner (struct file *file, void *priv, if (unlikely(UNSET == core->tuner_type)) return -EINVAL; + if (0 != t->index) + return -EINVAL; strcpy(t->name, "Television"); t->type = V4L2_TUNER_ANALOG_TV; |