From: <he...@us...> - 2004-10-20 00:08:21
|
Update of /cvsroot/gc-linux/linux/include/linux In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6018/include/linux Modified Files: fb.h Log Message: - Lots of small cosmetic changes. - Renamed gamecubefb.c to gcnfb.c. - Renamed gc* code to gcn* code. - Fixed some compiler warnings related to the fb_writel hack. - Made use of GCN_XFB_START for setting up the start address of the fb. Index: fb.h =================================================================== RCS file: /cvsroot/gc-linux/linux/include/linux/fb.h,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- fb.h 19 Oct 2004 09:46:10 -0000 1.7 +++ fb.h 20 Oct 2004 00:07:41 -0000 1.8 @@ -660,7 +660,8 @@ #ifndef CONFIG_FB_GAMECUBE /* XXX Why? O' why? */ # define fb_writel __raw_writel #else -# define fb_writel(b,addr) gamecubefb_writel(b,addr) + extern unsigned int gcnfb_writel(unsigned int, void *); +# define fb_writel(b,addr) gcnfb_writel(b,addr) # define fb_writel_real(b,addr) /* __raw_writel */ (*(volatile u32 *) (addr) = (b)) #endif #define fb_writeq __raw_writeq |