diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2006-12-11 15:51:43 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-12-27 14:18:54 -0200 |
commit | e71ced1a5dfebfde57c0ed2c9bd3c7b4596071c1 (patch) | |
tree | 60377c2410d0e6b67bea8f066ca7ace46cfdcaf9 /drivers/media | |
parent | 2485eb0a553f2ac8c73267ce48fcdee8a9728d43 (diff) | |
download | linux-3.10-e71ced1a5dfebfde57c0ed2c9bd3c7b4596071c1.tar.gz linux-3.10-e71ced1a5dfebfde57c0ed2c9bd3c7b4596071c1.tar.bz2 linux-3.10-e71ced1a5dfebfde57c0ed2c9bd3c7b4596071c1.zip |
V4L/DVB (4967): Add missing tuner module option pal=60 for PAL-60 support.
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media')
-rw-r--r-- | drivers/media/video/tuner-core.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/media/video/tuner-core.c b/drivers/media/video/tuner-core.c index 705daaa2a4f..ee4a493032d 100644 --- a/drivers/media/video/tuner-core.c +++ b/drivers/media/video/tuner-core.c @@ -267,6 +267,10 @@ static int tuner_fixup_std(struct tuner *t) { if ((t->std & V4L2_STD_PAL) == V4L2_STD_PAL) { switch (pal[0]) { + case '6': + tuner_dbg ("insmod fixup: PAL => PAL-60\n"); + t->std = V4L2_STD_PAL_60; + break; case 'b': case 'B': case 'g': |