patch-2.2.19 linux/drivers/isdn/sc/init.c
Next file: linux/drivers/isdn/sc/message.c
Previous file: linux/drivers/isdn/sc/includes.h
Back to the patch index
Back to the overall index
- Lines: 101
- Date:
Sun Mar 25 11:37:34 2001
- Orig file:
v2.2.18/drivers/isdn/sc/init.c
- Orig date:
Sun Mar 25 11:13:07 2001
diff -u --new-file --recursive --exclude-from /usr/src/exclude v2.2.18/drivers/isdn/sc/init.c linux/drivers/isdn/sc/init.c
@@ -1,3 +1,5 @@
+#include <linux/module.h>
+#include <linux/init.h>
#include "includes.h"
#include "hardware.h"
#include "card.h"
@@ -37,23 +39,12 @@
return 0;
}
-#ifdef MODULE
MODULE_PARM(io, "1-4i");
MODULE_PARM(irq, "1-4i");
MODULE_PARM(ram, "1-4i");
MODULE_PARM(do_reset, "i");
-#define init_sc init_module
-#else
-/*
-Initialization code for non-module version to be included
-void sc_setup(char *str, int *ints)
-{
-}
-*/
-#endif
-
-int init_sc(void)
+static int __init sc_init(void)
{
int b = -1;
int i, j;
@@ -164,7 +155,7 @@
if(do_reset) {
pr_debug("Doing a SAFE probe reset\n");
outb(0xFF, io[b] + RESET_OFFSET);
- current->state = TASK_INTERRUPTIBLE;
+ set_current_state(TASK_INTERRUPTIBLE);
schedule_timeout(milliseconds(10000));
}
pr_debug("RAM Base for board %d is 0x%x, %s probe\n", b, ram[b],
@@ -302,7 +293,7 @@
/*
* No interrupt could be used
*/
- pr_debug("Failed to aquire an IRQ line\n");
+ pr_debug("Failed to acquire an IRQ line\n");
continue;
}
@@ -410,8 +401,7 @@
return status;
}
-#ifdef MODULE
-void cleanup_module(void)
+static void sc_exit(void)
{
int i, j;
@@ -463,7 +453,6 @@
}
pr_info("SpellCaster ISA ISDN Adapter Driver Unloaded.\n");
}
-#endif
int identify_board(unsigned long rambase, unsigned int iobase)
{
@@ -512,7 +501,7 @@
* Try to identify a PRI card
*/
outb(PRI_BASEPG_VAL, pgport);
- current->state = TASK_INTERRUPTIBLE;
+ set_current_state(TASK_INTERRUPTIBLE);
schedule_timeout(HZ);
sig = readl(rambase + SIG_OFFSET);
pr_debug("Looking for a signature, got 0x%x\n", sig);
@@ -523,7 +512,7 @@
* Try to identify a PRI card
*/
outb(BRI_BASEPG_VAL, pgport);
- current->state = TASK_INTERRUPTIBLE;
+ set_current_state(TASK_INTERRUPTIBLE);
schedule_timeout(HZ);
sig = readl(rambase + SIG_OFFSET);
pr_debug("Looking for a signature, got 0x%x\n", sig);
@@ -555,7 +544,7 @@
*/
x = 0;
while((inb(iobase + FIFOSTAT_OFFSET) & RF_HAS_DATA) && x < 100) {
- current->state = TASK_INTERRUPTIBLE;
+ set_current_state(TASK_INTERRUPTIBLE);
schedule_timeout(1);
x++;
}
@@ -579,3 +568,6 @@
return -1;
}
+
+module_init(sc_init);
+module_exit(sc_exit);
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)