From: Aivils S. <ai...@us...> - 2004-02-09 07:34:23
|
Update of /cvsroot/linuxconsole/ruby/ruby-2.6/drivers/video In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32333/ruby-2.6/drivers/video Modified Files: fbmem.c Log Message: sync to 2.6.2 Index: fbmem.c =================================================================== RCS file: /cvsroot/linuxconsole/ruby/ruby-2.6/drivers/video/fbmem.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- fbmem.c 5 Dec 2003 12:11:21 -0000 1.2 +++ fbmem.c 9 Feb 2004 07:31:07 -0000 1.3 @@ -160,6 +160,8 @@ extern int tcx_setup(char*); extern int leo_init(void); extern int leo_setup(char*); +extern int kyrofb_init(void); +extern int kyrofb_setup(char*); static struct { const char *name; @@ -361,6 +363,9 @@ #ifdef CONFIG_FB_VOODOO1 { "sstfb", sstfb_init, sstfb_setup }, #endif +#ifdef CONFIG_FB_KYRO + { "kyrofb", kyrofb_init, kyrofb_setup }, +#endif /* * Generic drivers that don't use resource management (yet) */ |