]> git.karo-electronics.de Git - mv-sheeva.git/commitdiff
V4L/DVB (7340): ivtv: fix tunerhz bug: PAL-N(c) is 50 Hz, not 60
authorHans Verkuil <hverkuil@xs4all.nl>
Tue, 22 Apr 2008 17:45:50 +0000 (14:45 -0300)
committerMauro Carvalho Chehab <mchehab@infradead.org>
Thu, 24 Apr 2008 17:07:49 +0000 (14:07 -0300)
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
drivers/media/video/ivtv/ivtv-driver.c

index baa3aeed8a23507b9a04acd6d485ac80c477f515..3e4f55a9edfa98c9bdfacedcec6cdea95f5344bd 100644 (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;