* [PATCH 3/15] fbdev: Convert MODULE_PARM to module_param in intelfb
@ 2004-10-29 1:58 Antonino A. Daplas
0 siblings, 0 replies; only message in thread
From: Antonino A. Daplas @ 2004-10-29 1:58 UTC (permalink / raw)
To: Andrew Morton; +Cc: Linux Fbdev development list, Sylvain Meyer
fbdev: Convert MODULE_PARM to module_param in intelfb
Signed-off-by: Antonino Daplas <adaplas@pol.net>
---
intelfb.h | 6 +++---
intelfbdrv.c | 2 +-
2 files changed, 4 insertions(+), 4 deletions(-)
diff -Nru a/drivers/video/intelfb/intelfb.h b/drivers/video/intelfb/intelfb.h
--- a/drivers/video/intelfb/intelfb.h 2004-10-23 23:13:14 +08:00
+++ b/drivers/video/intelfb/intelfb.h 2004-10-28 20:56:42 +08:00
@@ -97,12 +97,12 @@
/* module parameters */
#define INTELFB_INT_PARAM(name, default, desc) \
static int name = default; \
- MODULE_PARM(name, "i"); \
+ module_param(name, int, default); \
MODULE_PARM_DESC(name, desc);
#define INTELFB_STR_PARAM(name, default, desc) \
- static const char *name = default; \
- MODULE_PARM(name, "s"); \
+ static char *name = (char *) default; \
+ module_param(name, charp, default); \
MODULE_PARM_DESC(name, desc);
/* misc macros */
diff -Nru a/drivers/video/intelfb/intelfbdrv.c b/drivers/video/intelfb/intelfbdrv.c
--- a/drivers/video/intelfb/intelfbdrv.c 2004-10-23 23:13:14 +08:00
+++ b/drivers/video/intelfb/intelfbdrv.c 2004-10-28 20:56:42 +08:00
@@ -197,7 +197,7 @@
INTELFB_INT_PARAM(idonly, 0,
"Just identify without doing anything else (debug)");
INTELFB_INT_PARAM(bailearly, 0, "Bail out early, depending on value (debug)");
-INTELFB_STR_PARAM(mode, NULL,
+INTELFB_STR_PARAM(mode, 0,
"Initial video mode \"<xres>x<yres>[-<depth>][@<refresh>]\"");
/***************************************************************
* modules entry points *
-------------------------------------------------------
This Newsletter Sponsored by: Macrovision
For reliable Linux application installations, use the industry's leading
setup authoring tool, InstallShield X. Learn more and evaluate
today. http://clk.atdmt.com/MSI/go/ins0030000001msi/direct/01/
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2004-10-29 1:58 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-10-29 1:58 [PATCH 3/15] fbdev: Convert MODULE_PARM to module_param in intelfb Antonino A. Daplas
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).