diff options
author | Andy Walls <awalls@radix.net> | 2009-05-10 22:14:29 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-06-16 18:21:14 -0300 |
commit | 5ab740522fbee3a2ef83554b9a9c92692c8c0f74 (patch) | |
tree | 73b353ad969e281650a53e9ed1c55c4c5a1d3cb7 /drivers/media/video/cx18/cx18-av-vbi.c | |
parent | 1bc7f51c57c52cfac1a455d8f8ef99703e719e55 (diff) | |
download | talos-obmc-linux-5ab740522fbee3a2ef83554b9a9c92692c8c0f74.tar.gz talos-obmc-linux-5ab740522fbee3a2ef83554b9a9c92692c8c0f74.zip |
V4L/DVB (11863): cx18: Initial attempt to get sliced VBI working for 625 line systems
Initial changes to get sliced VBI for 625 line system working. This is patch
is untested.
Signed-off-by: Andy Walls <awalls@radix.net>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/cx18/cx18-av-vbi.c')
-rw-r--r-- | drivers/media/video/cx18/cx18-av-vbi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/video/cx18/cx18-av-vbi.c b/drivers/media/video/cx18/cx18-av-vbi.c index 23b31670bf1d..640121448eb9 100644 --- a/drivers/media/video/cx18/cx18-av-vbi.c +++ b/drivers/media/video/cx18/cx18-av-vbi.c @@ -255,8 +255,8 @@ int cx18_av_vbi_s_fmt(struct cx18 *cx, struct v4l2_format *fmt) } cx18_av_write(cx, 0x43c, 0x16); - /* FIXME - should match vblank set in cx18_av_std_setup() */ - cx18_av_write(cx, 0x474, is_pal ? 0x2a : 26); + /* Should match vblank set in cx18_av_std_setup() */ + cx18_av_write(cx, 0x474, is_pal ? 36 : 26); return 0; } |