diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2006-08-08 20:48:07 +0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-09-26 16:53:35 +0200 |
commit | 704fd4a5672a5447a7f177838236eb13232be3c1 (patch) | |
tree | 6c8823e2bdb60cabb0e4b06c8b1d4a4d60689910 | |
parent | V4L/DVB (4413): Konicawc - handle errors from input_register_device() (diff) | |
download | linux-704fd4a5672a5447a7f177838236eb13232be3c1.tar.xz linux-704fd4a5672a5447a7f177838236eb13232be3c1.zip |
V4L/DVB (4417): Add support for PAL-Nc in cx24850.
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
-rw-r--r-- | drivers/media/video/cx25840/cx25840-vbi.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/media/video/cx25840/cx25840-vbi.c b/drivers/media/video/cx25840/cx25840-vbi.c index 6cc8bf215e85..48014a254e15 100644 --- a/drivers/media/video/cx25840/cx25840-vbi.c +++ b/drivers/media/video/cx25840/cx25840-vbi.c @@ -111,6 +111,10 @@ void cx25840_vbi_setup(struct i2c_client *client) uv_lpf=0; comb=0; sc=0x0a425f; + } else if (std == V4L2_STD_PAL_Nc) { + uv_lpf=1; + comb=0x20; + sc=556453; } else { uv_lpf=1; comb=0x20; |