From: <he...@us...> - 2004-10-20 22:38:41
|
Update of /cvsroot/gc-linux/linux/drivers/video In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30842 Modified Files: gcnfb.c Log Message: Do not fill the whole framebuffer with background color. This is already done for us. Index: gcnfb.c =================================================================== RCS file: /cvsroot/gc-linux/linux/drivers/video/gcnfb.c,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- gcnfb.c 20 Oct 2004 00:07:40 -0000 1.1 +++ gcnfb.c 20 Oct 2004 22:38:31 -0000 1.2 @@ -398,12 +398,6 @@ goto err_register_framebuffer; } - /* fill framebuffer memory with black color */ - int c = gcnfb_defined.xres * gcnfb_defined.yres / 2; - volatile unsigned long *p = (unsigned long *)gcnfb_info.screen_base; - while (c--) - writel(0x00800080, p++); - unsigned int *VIDEO_Mode; if (tv_encoding == TV_ENC_NTSC) |