Update of /cvsroot/linuxconsole/ruby/linux/drivers/video/tdfx
In directory usw-pr-cvs1:/tmp/cvs-serv23210
Modified Files:
3dfxfb.c
Log Message:
Add some MODULE_PARM()'s for noaccel and nohwcursor.
Index: 3dfxfb.c
===================================================================
RCS file: /cvsroot/linuxconsole/ruby/linux/drivers/video/tdfx/3dfxfb.c,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- 3dfxfb.c 2001/12/26 17:28:12 1.15
+++ 3dfxfb.c 2002/01/08 08:34:15 1.16
@@ -1239,7 +1239,11 @@
MODULE_AUTHOR("Hannu Mallat <hm...@cc...>");
MODULE_DESCRIPTION("3Dfx framebuffer device driver");
MODULE_LICENSE("GPL");
-
+MODULE_PARM(noaccel, "i");
+MODULE_PARM_DESC(noaccel, "Disable hardware acceleration (1 = disabled), enabled by default.");
+MODULE_PARM(nohwcursor, "i");
+MODULE_PARM_DESC(nohwcursor, "Disable hardware cursor (1 = disabled), enabled by default.");
+
#ifdef MODULE
module_init(tdfxfb_init);
#endif
|