From: <aot...@us...> - 2005-01-04 22:09:44
|
Update of /cvsroot/gc-linux/linux/arch/ppc/platforms In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32107/arch/ppc/platforms Modified Files: gamecube.c gcn-con.c Removed Files: gcn-con.h Log Message: Kill off arch/ppc/platforms/gcn-con.h; the only thing we needed in there was gcn_con_init(), now declared in arch/ppc/platforms/gamecube.c (This should eventually move to drivers/video/console/) Index: gamecube.c =================================================================== RCS file: /cvsroot/gc-linux/linux/arch/ppc/platforms/gamecube.c,v retrieving revision 1.23 retrieving revision 1.24 diff -u -d -r1.23 -r1.24 --- gamecube.c 22 Oct 2004 19:42:03 -0000 1.23 +++ gamecube.c 4 Jan 2005 22:09:05 -0000 1.24 @@ -26,7 +26,6 @@ #include <asm/pgtable.h> #include "gamecube.h" -#include "gcn-con.h" /* * There are 14 IRQs in total. Each has a corresponding bit in both @@ -65,6 +64,8 @@ extern unsigned long gcn_get_rtc_time(void); extern int gcn_set_rtc_time(unsigned long nowtime); +/* from arch/ppc/platforms/gcn-con.c */ +extern void gcn_con_init(void); unsigned long gcn_find_end_of_memory(void) Index: gcn-con.c =================================================================== RCS file: /cvsroot/gc-linux/linux/arch/ppc/platforms/gcn-con.c,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- gcn-con.c 19 Oct 2004 23:36:54 -0000 1.1 +++ gcn-con.c 4 Jan 2005 22:09:09 -0000 1.2 @@ -19,7 +19,6 @@ #include <linux/cache.h> #include "gamecube.h" -#include "gcn-con.h" extern struct font_desc font_vga_8x16; --- gcn-con.h DELETED --- |