diff -Naur kqemu/kqemu-linux.c kqemu-mod/kqemu-linux.c
--- kqemu/kqemu-linux.c	2005-09-03 16:39:36.000000000 +0000
+++ kqemu-mod/kqemu-linux.c	2006-03-30 07:26:20.000000000 +0000
@@ -48,11 +48,11 @@
 /* if 0 is used, then devfs/udev is used to automatically create the
    device */
 int major = 250;
-MODULE_PARM(major,"i");
+module_param(major, int, 0);
 
 /* configurable max_instances */
 int max_instances = 4;
-MODULE_PARM(max_instances,"i");
+module_param(max_instances, int, 0);
 
 /* lock the page at virtual address 'user_addr' and return its
    page index. Return -1 if error */







