From: Albert H. <he...@us...> - 2005-10-02 18:10:12
|
Update of /cvsroot/gc-linux/linux/drivers/video In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17088/drivers/video Modified Files: gcnfb.c Log Message: Reduce dmesg noise. Index: gcnfb.c =================================================================== RCS file: /cvsroot/gc-linux/linux/drivers/video/gcnfb.c,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- gcnfb.c 6 Jan 2005 20:16:53 -0000 1.9 +++ gcnfb.c 2 Oct 2005 18:10:00 -0000 1.10 @@ -536,7 +536,9 @@ { int i; +/* printk(KERN_INFO "Setting mode %s\n", gcnfb_current_video_mode->name); +*/ gcnfb_set_framebuffer(info->fix.smem_start); /* initialize video registers */ @@ -626,7 +628,6 @@ printk("gcnfb: options = %s\n", options); while ((this_opt = strsep(&options, ",")) != NULL) { - printk("this_opt = %s\n", this_opt); if (!*this_opt) continue; @@ -637,8 +638,6 @@ else if (!strcmp(this_opt, "ywrap")) ypan = 2; else if (!strncmp(this_opt, "tv=", 3)) { - printk("detected \"tv=\"\n"); - printk("cmd line: %s\n", this_opt); if (!strncmp(this_opt + 3, "PAL", 3)) gcnfb_current_video_mode = gcnfb_video_modes + GCNFB_VM_PAL50; |