Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=469ba047c08669f364c2616967e8494b1f3ef21c
Commit:     469ba047c08669f364c2616967e8494b1f3ef21c
Parent:     6e5eb59102aa6007d3ea2b382a1d3ca4112c272a
Author:     Hans Verkuil <[EMAIL PROTECTED]>
AuthorDate: Fri Jul 20 06:51:58 2007 -0300
Committer:  Mauro Carvalho Chehab <[EMAIL PROTECTED]>
CommitDate: Tue Oct 9 22:03:23 2007 -0300

    V4L/DVB (5927): ivtv: set correct crystal frequency of the GVMVPRX cards
    
    Signed-off-by: Hans Verkuil <[EMAIL PROTECTED]>
    Signed-off-by: Mauro Carvalho Chehab <[EMAIL PROTECTED]>
---
 drivers/media/video/ivtv/ivtv-driver.c |   10 ++++++++++
 1 files changed, 10 insertions(+), 0 deletions(-)

diff --git a/drivers/media/video/ivtv/ivtv-driver.c 
b/drivers/media/video/ivtv/ivtv-driver.c
index 55ed030..cf52111 100644
--- a/drivers/media/video/ivtv/ivtv-driver.c
+++ b/drivers/media/video/ivtv/ivtv-driver.c
@@ -57,6 +57,7 @@
 #include "ivtv-yuv.h"
 
 #include <media/tveeprom.h>
+#include <media/saa7115.h>
 #include <media/v4l2-chip-ident.h>
 
 /* var to keep track of the number of array elements in use */
@@ -893,6 +894,15 @@ static void ivtv_load_and_init_modules(struct ivtv *itv)
                else if ((hw & IVTV_HW_UPD64031A) == 0)
                        itv->card = ivtv_get_card(IVTV_CARD_CX23416GYC_NOGR);
        }
+       else if (itv->card->type == IVTV_CARD_GV_MVPRX ||
+                itv->card->type == IVTV_CARD_GV_MVPRX2E) {
+               struct v4l2_crystal_freq crystal_freq;
+
+               /* The crystal frequency of GVMVPRX is 24.576MHz */
+               crystal_freq.freq = SAA7115_FREQ_24_576_MHZ;
+               crystal_freq.flags = SAA7115_FREQ_FL_UCGC;
+               itv->video_dec_func(itv, VIDIOC_INT_S_CRYSTAL_FREQ, 
&crystal_freq);
+       }
 
        if (hw & IVTV_HW_CX25840) {
                itv->vbi.raw_decoder_line_size = 1444;
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to