All of lore.kernel.org
 help / color / mirror / Atom feed
* [KJ] [PATCH] convert orinoco wireless driver to module_param
@ 2004-11-09 21:34 Stefan Sperling
  0 siblings, 0 replies; only message in thread
From: Stefan Sperling @ 2004-11-09 21:34 UTC (permalink / raw)
  To: kernel-janitors

[-- Attachment #1: Type: text/plain, Size: 786 bytes --]


Replaces MODULE_PARM with module_param calls in orinoco wireless driver.

--- drivers/net/wireless/orinoco.c.orig	2004-11-09 20:40:22.009921296 +0100
+++ drivers/net/wireless/orinoco.c	2004-11-08 21:01:00.000000000 +0100
@@ -461,12 +461,12 @@ MODULE_LICENSE("Dual MPL/GPL");
 /* Level of debugging. Used in the macros in orinoco.h */
 #ifdef ORINOCO_DEBUG
 int orinoco_debug = ORINOCO_DEBUG;
-MODULE_PARM(orinoco_debug, "i");
+module_param(orinoco_debug, int, 0644);
 EXPORT_SYMBOL(orinoco_debug);
 #endif
 
 static int suppress_linkstatus; /* = 0 */
-MODULE_PARM(suppress_linkstatus, "i");
+module_param(suppress_linkstatus, bool, 0644);
 
 /********************************************************************/
 /* Compile time configuration and compatibility stuff               */

[-- Attachment #2: Type: text/plain, Size: 167 bytes --]

_______________________________________________
Kernel-janitors mailing list
Kernel-janitors@lists.osdl.org
http://lists.osdl.org/mailman/listinfo/kernel-janitors

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2004-11-09 21:34 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-11-09 21:34 [KJ] [PATCH] convert orinoco wireless driver to module_param Stefan Sperling

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.