summaryrefslogtreecommitdiff
path: root/drivers/media/video/ivtv/ivtv-driver.c
diff options
context:
space:
mode:
authorHans Verkuil <hverkuil@xs4all.nl>2008-04-22 14:45:50 -0300
committerMauro Carvalho Chehab <mchehab@infradead.org>2008-04-24 14:07:49 -0300
commitcd9fa026606848b2238a56e37b2c4aa4f371e152 (patch)
tree0d46aa9aa4aa0f572188275289690f843fc0a101 /drivers/media/video/ivtv/ivtv-driver.c
parentd00573bbe9ce97798e08e6718f3459c2c2ceacc0 (diff)
V4L/DVB (7340): ivtv: fix tunerhz bug: PAL-N(c) is 50 Hz, not 60
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video/ivtv/ivtv-driver.c')
-rw-r--r--drivers/media/video/ivtv/ivtv-driver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/ivtv/ivtv-driver.c b/drivers/media/video/ivtv/ivtv-driver.c
index baa3aeed8a23..3e4f55a9edfa 100644
--- a/drivers/media/video/ivtv/ivtv-driver.c
+++ b/drivers/media/video/ivtv/ivtv-driver.c
@@ -509,7 +509,7 @@ static v4l2_std_id ivtv_parse_std(struct ivtv *itv)
return V4L2_STD_PAL_BG | V4L2_STD_PAL_H;
case 'n':
case 'N':
- tunerhz = 60;
+ tunerhz = 50;
if (pal[1] == 'c' || pal[1] == 'C')
return V4L2_STD_PAL_Nc;
return V4L2_STD_PAL_N;