From: Albert H. <he...@us...> - 2008-03-27 22:36:54
|
Update of /cvsroot/gc-linux/linux/drivers/video In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv15970/drivers/video Modified Files: gcnfb.c Log Message: Small cleanups: - Added copyright notices to the DTS files. - Renamed DTS node names and compatible properties as per segher suggestion. - s/-isobel/i/ from version strings. - Added missing arch/powerpc/platforms/embedded6xx/usbgecko_udbg.h file. - s/DVD/Disk/ on gcn-di.c. - Use "exi" instead of "exi-driver" in exi-driver messages. Index: gcnfb.c =================================================================== RCS file: /cvsroot/gc-linux/linux/drivers/video/gcnfb.c,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- gcnfb.c 26 Mar 2008 20:15:21 -0000 1.18 +++ gcnfb.c 27 Mar 2008 22:35:42 -0000 1.19 @@ -34,13 +34,12 @@ #include "gcngx.h" #define DRV_MODULE_NAME "gcn-vifb" -#define DRV_DESCRIPTION "Nintendo GameCube/Wii Video Interface (VI)" \ - " frame buffer driver" +#define DRV_DESCRIPTION "Nintendo GameCube/Wii Video Interface (VI) driver" #define DRV_AUTHOR "Michael Steil <mi...@c6...>, " \ "Todd Jeffreys <to...@vo...>, " \ "Albert Herranz" -static char vifb_driver_version[] = "1.0-isobel"; +static char vifb_driver_version[] = "1.0i"; #define drv_printk(level, format, arg...) \ printk(level DRV_MODULE_NAME ": " format , ## arg) @@ -938,7 +937,7 @@ if (!options || !*options) return 0; - drv_printk(KERN_DEBUG, "options = %s\n", options); + drv_printk(KERN_DEBUG, "options: %s\n", options); while ((this_opt = strsep(&options, ",")) != NULL) { if (!*this_opt) @@ -1010,7 +1009,8 @@ static struct of_device_id vifb_of_match[] = { - { .compatible = "nintendo,vifb", }, + { .compatible = "nintendo,flipper-video", }, + { .compatible = "nintendo,hollywood-video", }, { }, }; |