dect
/
linux-2.6
Archived
13
0
Fork 0

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>
This commit is contained in:
Hans Verkuil 2008-04-22 14:45:50 -03:00 committed by Mauro Carvalho Chehab
parent d00573bbe9
commit cd9fa02660
1 changed files with 1 additions and 1 deletions

View File

@ -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;