aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorHans Verkuil <hverkuil@xs4all.nl>2008-04-22 13:45:50 -0400
committerMauro Carvalho Chehab <mchehab@infradead.org>2008-04-24 13:07:49 -0400
commitcd9fa026606848b2238a56e37b2c4aa4f371e152 (patch)
tree0d46aa9aa4aa0f572188275289690f843fc0a101 /drivers
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')
-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)
509 return V4L2_STD_PAL_BG | V4L2_STD_PAL_H; 509 return V4L2_STD_PAL_BG | V4L2_STD_PAL_H;
510 case 'n': 510 case 'n':
511 case 'N': 511 case 'N':
512 tunerhz = 60; 512 tunerhz = 50;
513 if (pal[1] == 'c' || pal[1] == 'C') 513 if (pal[1] == 'c' || pal[1] == 'C')
514 return V4L2_STD_PAL_Nc; 514 return V4L2_STD_PAL_Nc;
515 return V4L2_STD_PAL_N; 515 return V4L2_STD_PAL_N;