Patch for 2.6 support
Status: Inactive
Brought to you by:
tnt246
Patch against CVS version for 2.6 support. Patch
basically expands on the old patch-2.6 file by renaming
the #ifdef 0 to #ifdef NW800_DEF -- for some reason the
thing wouldn't compile with #ifdef 0.
No need to apply patch-2.6 first as this patch
incorporates those changes as well.
Patch for 2.6 support
Logged In: NO
Possibly you could add the MODULE_PARM-Macro-thing since
kernel version 2.6.17 (?):
+module_param(debug, int, 0600);
-MODULE_PARM(debug_uv, "i");
+module_param(debug_uv, int, 0600);
-MODULE_PARM(size, "i");
+module_param(size, int, 0600);