patch-2.2.19 linux/drivers/isdn/avmb1/b1isa.c
Next file: linux/drivers/isdn/avmb1/b1pci.c
Previous file: linux/drivers/isdn/avmb1/b1dma.c
Back to the patch index
Back to the overall index
- Lines: 116
- Date:
Sun Mar 25 11:37:31 2001
- Orig file:
v2.2.18/drivers/isdn/avmb1/b1isa.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/avmb1/b1isa.c linux/drivers/isdn/avmb1/b1isa.c
@@ -1,11 +1,27 @@
/*
- * $Id: b1isa.c,v 1.7 2000/02/02 18:36:03 calle Exp $
+ * $Id: b1isa.c,v 1.10.6.1 2001/02/13 11:43:29 kai Exp $
*
* Module for AVM B1 ISA-card.
*
* (c) Copyright 1999 by Carsten Paeth (calle@calle.in-berlin.de)
*
* $Log: b1isa.c,v $
+ * Revision 1.10.6.1 2001/02/13 11:43:29 kai
+ * more compatility changes for 2.2.19
+ *
+ * Revision 1.10 2000/11/23 20:45:14 kai
+ * fixed module_init/exit stuff
+ * Note: compiled-in kernel doesn't work pre 2.2.18 anymore.
+ *
+ * Revision 1.9 2000/11/01 14:05:02 calle
+ * - use module_init/module_exit from linux/init.h.
+ * - all static struct variables are initialized with "membername:" now.
+ * - avm_cs.c, let it work with newer pcmcia-cs.
+ *
+ * Revision 1.8 2000/04/03 13:29:24 calle
+ * make Tim Waugh happy (module unload races in 2.3.99-pre3).
+ * no real problem there, but now it is much cleaner ...
+ *
* Revision 1.7 2000/02/02 18:36:03 calle
* - Modules are now locked while init_module is running
* - fixed problem with memory mapping if address is not aligned
@@ -63,13 +79,14 @@
#include <linux/interrupt.h>
#include <linux/ioport.h>
#include <linux/capi.h>
+#include <linux/init.h>
#include <asm/io.h>
#include "capicmd.h"
#include "capiutil.h"
#include "capilli.h"
#include "avmcard.h"
-static char *revision = "$Revision: 1.7 $";
+static char *revision = "$Revision: 1.10.6.1 $";
/* ------------------------------------------------------------- */
@@ -240,31 +257,29 @@
/* ------------------------------------------------------------- */
static struct capi_driver b1isa_driver = {
- "b1isa",
- "0.0",
- b1_load_firmware,
- b1_reset_ctr,
- b1isa_remove_ctr,
- b1_register_appl,
- b1_release_appl,
- b1_send_message,
-
- b1isa_procinfo,
- b1ctl_read_proc,
- 0, /* use standard driver_read_proc */
+ name: "b1isa",
+ revision: "0.0",
+ load_firmware: b1_load_firmware,
+ reset_ctr: b1_reset_ctr,
+ remove_ctr: b1isa_remove_ctr,
+ register_appl: b1_register_appl,
+ release_appl: b1_release_appl,
+ send_message: b1_send_message,
+
+ procinfo: b1isa_procinfo,
+ ctr_read_proc: b1ctl_read_proc,
+ driver_read_proc: 0, /* use standard driver_read_proc */
- b1isa_add_card,
+ add_card: b1isa_add_card,
};
-#ifdef MODULE
-#define b1isa_init init_module
-void cleanup_module(void);
-#endif
-
-int b1isa_init(void)
+static int __init b1isa_init(void)
{
struct capi_driver *driver = &b1isa_driver;
char *p;
+ int retval = 0;
+
+ MOD_INC_USE_COUNT;
if ((p = strchr(revision, ':'))) {
strncpy(driver->revision, p + 1, sizeof(driver->revision));
@@ -279,14 +294,16 @@
if (!di) {
printk(KERN_ERR "%s: failed to attach capi_driver\n",
driver->name);
- return -EIO;
+ retval = -EIO;
}
- return 0;
+ MOD_DEC_USE_COUNT;
+ return retval;
}
-#ifdef MODULE
-void cleanup_module(void)
+static void b1isa_exit(void)
{
detach_capi_driver(&b1isa_driver);
}
-#endif
+
+module_init(b1isa_init);
+module_exit(b1isa_exit);
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)