summaryrefslogtreecommitdiff
path: root/linux/drivers/media/video/au0828
diff options
context:
space:
mode:
authorDevin Heitmueller <dheitmueller@linuxtv.org>2009-03-11 02:00:53 -0400
committerDevin Heitmueller <dheitmueller@linuxtv.org>2009-03-11 02:00:53 -0400
commitde945fa2e9213ecf4dba1f9b3a96cc45d18da56c (patch)
treec8ab2693dd9256cf2daa4cd9b0f55a01e049c092 /linux/drivers/media/video/au0828
parentbebbcb664be46fdeca98fb14b67966b4fa58b667 (diff)
downloadmediapointer-dvb-s2-de945fa2e9213ecf4dba1f9b3a96cc45d18da56c.tar.gz
mediapointer-dvb-s2-de945fa2e9213ecf4dba1f9b3a96cc45d18da56c.tar.bz2
au0828: advertise only NTSC-M (as opposed to all NTSC standards)
From: Devin Heitmueller <dheitmueller@linuxtv.org> We don't now how to make any variant of NTSC work other than NTSC-M, so don't advertise that we support the other variants. Priority: normal Signed-off-by: Devin Heitmueller <dheitmueller@linuxtv.org>
Diffstat (limited to 'linux/drivers/media/video/au0828')
-rw-r--r--linux/drivers/media/video/au0828/au0828-video.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/linux/drivers/media/video/au0828/au0828-video.c b/linux/drivers/media/video/au0828/au0828-video.c
index 7e3fbdf54..0162a58c8 100644
--- a/linux/drivers/media/video/au0828/au0828-video.c
+++ b/linux/drivers/media/video/au0828/au0828-video.c
@@ -1600,8 +1600,8 @@ static const struct video_device au0828_video_template = {
.release = video_device_release,
.ioctl_ops = &video_ioctl_ops,
.minor = -1,
- .tvnorms = V4L2_STD_NTSC,
- .current_norm = V4L2_STD_NTSC,
+ .tvnorms = V4L2_STD_NTSC_M,
+ .current_norm = V4L2_STD_NTSC_M,
};
/**************************************************************************/