replace old MODULE_PARM stuff with module_param (Thanks to Stefan Schweizer)

This commit is contained in:
Karsten Keil 2006-03-22 18:33:04 +00:00
parent 3b80b6e75c
commit 273ea59911
16 changed files with 47 additions and 57 deletions

View File

@ -932,7 +932,6 @@ static int init_card(fritzpnppci *fc)
}
#define MAX_CARDS 4
#define MODULE_PARM_T "1-4i"
static int fritz_cnt;
static u_int protocol[MAX_CARDS];
static int layermask[MAX_CARDS];
@ -945,9 +944,9 @@ MODULE_AUTHOR("Karsten Keil");
#ifdef MODULE_LICENSE
MODULE_LICENSE("GPL");
#endif
MODULE_PARM(debug, "1i");
MODULE_PARM(protocol, MODULE_PARM_T);
MODULE_PARM(layermask, MODULE_PARM_T);
module_param(debug, uint, S_IRUGO | S_IWUSR);
module_param_array(protocol, uint, NULL, S_IRUGO | S_IWUSR);
module_param_array(layermask, uint, NULL, S_IRUGO | S_IWUSR);
#endif
int

View File

@ -19,7 +19,7 @@ MODULE_AUTHOR("Karsten Keil");
#ifdef MODULE_LICENSE
MODULE_LICENSE("GPL");
#endif
MODULE_PARM(debug, "1i");
module_param(debug, uint, S_IRUGO | S_IWUSR);
#endif
static char deb_buf[256];

View File

@ -192,9 +192,9 @@ int dsp_poll, dsp_tics;
#ifdef MODULE
MODULE_AUTHOR("Andreas Eversberg");
MODULE_PARM(debug, "1i");
MODULE_PARM(options, "1i");
MODULE_PARM(poll, "1i");
module_param(debug, uint, S_IRUGO | S_IWUSR);
module_param(options, uint, S_IRUGO | S_IWUSR);
module_param(poll, uint, S_IRUGO | S_IWUSR);
#ifdef MODULE_LICENSE
MODULE_LICENSE("GPL");
#endif

View File

@ -1920,8 +1920,8 @@ static char MName[] = "FAXL3";
#ifdef MODULE
MODULE_AUTHOR("Karsten Keil");
MODULE_PARM(debug, "1i");
MODULE_PARM(ttt, "1i");
module_param(debug, uint, S_IRUGO | S_IWUSR);
module_param(ttt, uint, S_IRUGO | S_IWUSR);
#ifdef MODULE_LICENSE
MODULE_LICENSE("GPL");
#endif

View File

@ -207,8 +207,6 @@ static const PCI_ENTRY id_list[] =
/* NOTE: MAX_PORTS must be 8*MAX_CARDS */
#define MAX_CARDS 16
#define MAX_PORTS 128
#define MODULE_CARDS_T "1-16i"
#define MODULE_PORTS_T "1-128i" /* 16 cards can have 128 ports */
static u_int type[MAX_CARDS];
static BYTE allocated[MAX_CARDS]; // remember if card is found
static int pcm[MAX_PORTS];
@ -222,12 +220,12 @@ MODULE_AUTHOR("Andreas Eversberg");
#ifdef MODULE_LICENSE
MODULE_LICENSE("GPL");
#endif
MODULE_PARM(debug, "1i");
MODULE_PARM(poll, "1i");
MODULE_PARM(type, MODULE_CARDS_T);
MODULE_PARM(pcm, MODULE_CARDS_T);
MODULE_PARM(protocol, MODULE_PORTS_T);
MODULE_PARM(layermask, MODULE_PORTS_T);
module_param(debug, uint, S_IRUGO | S_IWUSR);
module_param(poll, uint, S_IRUGO | S_IWUSR);
module_param_array(type, uint, NULL, S_IRUGO | S_IWUSR);
module_param_array(pcm, uint, NULL, S_IRUGO | S_IWUSR);
module_param_array(protocol, uint, NULL, S_IRUGO | S_IWUSR);
module_param_array(layermask, uint, NULL, S_IRUGO | S_IWUSR);
#endif
static void

View File

@ -69,17 +69,15 @@ static int card_cnt;
static u_int protocol[MAX_CARDS];
static int layermask[MAX_CARDS];
#ifdef MODULE
MODULE_LICENSE("GPL");
#define MODULE_PARM_T "1-8i"
MODULE_PARM(debug, "1i");
MODULE_PARM(protocol, MODULE_PARM_T);
MODULE_PARM(layermask, MODULE_PARM_T);
#endif
static mISDNobject_t hw_mISDNObj;
static int debug = 0;
#ifdef MODULE
MODULE_LICENSE("GPL");
module_param(debug, uint, S_IRUGO | S_IWUSR);
module_param_array(protocol, uint, NULL, S_IRUGO | S_IWUSR);
module_param_array(layermask, uint, NULL, S_IRUGO | S_IWUSR);
#endif
#if HFCBRIDGE == BRIDGE_HFCPCI

View File

@ -42,7 +42,6 @@
const char *hfcsusb_rev = "$Revision$";
#define MAX_CARDS 8
#define MODULE_PARM_T "1-8i"
static int hfcsusb_cnt;
static u_int protocol[MAX_CARDS] = {2,2,2,2,2,2,2,2};
static int layermask[MAX_CARDS];
@ -54,9 +53,9 @@ static int debug = 0x1FFFF; // 0;
#ifdef MODULE_LICENSE
MODULE_LICENSE("GPL");
#endif
MODULE_PARM(debug, "1i");
MODULE_PARM(protocol, MODULE_PARM_T);
MODULE_PARM(layermask, MODULE_PARM_T);
module_param(debug, uint, S_IRUGO | S_IWUSR);
module_param_array(protocol, uint, NULL, S_IRUGO | S_IWUSR);
module_param_array(layermask, uint, NULL, S_IRUGO | S_IWUSR);
#endif

View File

@ -157,7 +157,7 @@ MODULE_AUTHOR("Karsten Keil");
#ifdef MODULE_LICENSE
MODULE_LICENSE("GPL");
#endif
MODULE_PARM(debug, "1i");
module_param(debug, uint, S_IRUGO | S_IWUSR);
#endif
static void

View File

@ -238,7 +238,6 @@ static char l1oipName[] = "Layer1oIP";
/****************/
#define MAX_CARDS 16
#define MODULE_CARDS_T "1-16i"
static u_int type[MAX_CARDS];
static u_int codec[MAX_CARDS];
static u_int protocol[MAX_CARDS];
@ -250,11 +249,11 @@ MODULE_AUTHOR("Andreas Eversberg");
#ifdef MODULE_LICENSE
MODULE_LICENSE("GPL");
#endif
MODULE_PARM(type, MODULE_CARDS_T);
MODULE_PARM(codec, MODULE_CARDS_T);
MODULE_PARM(protocol, MODULE_CARDS_T);
MODULE_PARM(layermask, MODULE_CARDS_T);
MODULE_PARM(debug, "1i");
module_param_array(type, uint, NULL, S_IRUGO | S_IWUSR);
module_param_array(codec, uint, NULL, S_IRUGO | S_IWUSR);
module_param_array(protocol, uint, NULL, S_IRUGO | S_IWUSR);
module_param_array(layermask, uint, NULL, S_IRUGO | S_IWUSR);
module_param(debug, uint, S_IRUGO | S_IWUSR);
#endif

View File

@ -2922,7 +2922,7 @@ MODULE_AUTHOR("Karsten Keil");
#ifdef MODULE_LICENSE
MODULE_LICENSE("GPL");
#endif
MODULE_PARM(debug, "1i");
module_param(debug, uint, S_IRUGO | S_IWUSR);
#endif
static int

View File

@ -737,7 +737,7 @@ static char MName[] = "ISDNL1";
#ifdef MODULE
MODULE_AUTHOR("Karsten Keil");
MODULE_PARM(debug, "1i");
module_param(debug, uint, S_IRUGO | S_IWUSR);
#ifdef MODULE_LICENSE
MODULE_LICENSE("GPL");
#endif

View File

@ -2408,7 +2408,7 @@ MODULE_AUTHOR("Karsten Keil");
#ifdef MODULE_LICENSE
MODULE_LICENSE("GPL");
#endif
MODULE_PARM(debug, "1i");
module_param(debug, uint, S_IRUGO | S_IWUSR);
#endif
static int

View File

@ -57,8 +57,8 @@ MODULE_AUTHOR("Andreas Eversberg");
#ifdef MODULE_LICENSE
MODULE_LICENSE("GPL");
#endif
MODULE_PARM(interfaces, "1i");
MODULE_PARM(debug, "1i");
module_param(interfaces, uint, S_IRUGO | S_IWUSR);
module_param(debug, uint, S_IRUGO | S_IWUSR);
#endif

View File

@ -992,7 +992,6 @@ static int init_card(w6692pci *card)
}
#define MAX_CARDS 4
#define MODULE_PARM_T "1-4i"
static int w6692_cnt;
static u_int protocol[MAX_CARDS];
static int layermask[MAX_CARDS];
@ -1007,11 +1006,11 @@ MODULE_AUTHOR("Karsten Keil");
#ifdef MODULE_LICENSE
MODULE_LICENSE("GPL");
#endif
MODULE_PARM(debug, "1i");
MODULE_PARM(led, MODULE_PARM_T);
MODULE_PARM(pots, MODULE_PARM_T);
MODULE_PARM(protocol, MODULE_PARM_T);
MODULE_PARM(layermask, MODULE_PARM_T);
module_param(debug, uint, S_IRUGO | S_IWUSR);
module_param_array(led, uint, NULL, S_IRUGO | S_IWUSR);
module_param_array(pots, uint, NULL, S_IRUGO | S_IWUSR);
module_param_array(protocol, uint, NULL, S_IRUGO | S_IWUSR);
module_param_array(layermask, uint, NULL, S_IRUGO | S_IWUSR);
#endif
/******************************/

View File

@ -1256,7 +1256,7 @@ static char MName[] = "X25_DTE";
#ifdef MODULE
MODULE_AUTHOR("Karsten Keil");
MODULE_PARM(debug, "1i");
module_param(debug, uint, S_IRUGO | S_IWUSR);
#ifdef MODULE_LICENSE
MODULE_LICENSE("GPL");
#endif

View File

@ -72,20 +72,18 @@ static int card_cnt;
static u_int protocol[MAX_CARDS * MAX_PORT];
static int layermask[MAX_CARDS * MAX_PORT];
static mISDNobject_t hw_mISDNObj;
static int debug = 0;
#ifdef MODULE
#ifdef MODULE_LICENSE
MODULE_LICENSE("GPL");
#endif
#define MODULE_PARM_T "1-8i"
MODULE_PARM(debug, "1i");
MODULE_PARM(protocol, MODULE_PARM_T);
MODULE_PARM(layermask, MODULE_PARM_T);
module_param(debug, uint, S_IRUGO | S_IWUSR);
module_param_array(protocol, uint, NULL, S_IRUGO | S_IWUSR);
module_param_array(layermask, uint, NULL, S_IRUGO | S_IWUSR);
#endif
static mISDNobject_t hw_mISDNObj;
static int debug = 0;
/* static function prototypes */
static void release_card(xhfc_pi * pi);
static void setup_fifo(xhfc_t * xhfc, __u8 fifo, __u8 conhdlc, __u8 subcfg,