From: Albert H. <he...@us...> - 2006-03-24 22:20:35
|
Update of /cvsroot/gc-linux/linux/arch/ppc/platforms In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22880/arch/ppc/platforms Modified Files: gamecube.h Log Message: Rewrote the framebuffer driver. Made the GX stuff optional (also saves GX reserved mem if not compiled in). Index: gamecube.h =================================================================== RCS file: /cvsroot/gc-linux/linux/arch/ppc/platforms/gamecube.h,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- gamecube.h 6 Jan 2005 19:57:53 -0000 1.12 +++ gamecube.h 24 Mar 2006 22:20:15 -0000 1.13 @@ -84,9 +84,13 @@ */ #ifdef CONFIG_FB_GAMECUBE #define GCN_XFB_SIZE (2*640*GCN_VIDEO_LINES*2) /* framebuffer */ - #define GCN_GX_FIFO_SIZE (256*1024) #else #define GCN_XFB_SIZE (0) +#endif + +#ifdef CONFIG_FB_GAMECUBE_GX + #define GCN_GX_FIFO_SIZE (256*1024) +#else #define GCN_GX_FIFO_SIZE (0) #endif |