patch-1.3.17 linux/drivers/net/at1700.c
Next file: linux/drivers/net/de600.c
Previous file: linux/drivers/net/apricot.c
Back to the patch index
Back to the overall index
- Lines: 71
- Date:
Wed Aug 9 09:52:26 1995
- Orig file:
v1.3.16/linux/drivers/net/at1700.c
- Orig date:
Tue Aug 8 12:31:35 1995
diff -u --recursive --new-file v1.3.16/linux/drivers/net/at1700.c linux/drivers/net/at1700.c
@@ -31,6 +31,11 @@
static const char *version =
"at1700.c:v1.12 1/18/95 Donald Becker (becker@cesdis.gsfc.nasa.gov)\n";
+#ifdef MODULE
+#include <linux/module.h>
+#include <linux/version.h>
+#endif
+
#include <linux/config.h>
#include <linux/kernel.h>
@@ -356,6 +361,10 @@
dev->interrupt = 0;
dev->start = 1;
+#ifdef MODULE
+ MOD_INC_USE_COUNT;
+#endif
+
return 0;
}
@@ -584,6 +593,10 @@
/* Power-down the chip. Green, green, green! */
outb(0x00, ioaddr + CONFIG_1);
+#ifdef MODULE
+ MOD_DEC_USE_COUNT;
+#endif
+
return 0;
}
@@ -616,6 +629,36 @@
} else
outb(2, ioaddr + RX_MODE); /* Disable promiscuous, use normal mode */
}
+#ifdef MODULE
+char kernel_version[] = UTS_RELEASE;
+static struct device dev_at1700 = {
+ " " /*"at1700"*/, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, at1700_probe };
+
+int io = 0;
+int irq = 0;
+
+int init_module(void)
+{
+ dev_at1700.base_addr = io;
+ dev_at1700.irq = irq;
+ if (register_netdev(&dev_at1700) != 0) {
+ printk("at1700: register_netdev() returned non-zero.\n");
+ return -EIO;
+ }
+ return 0;
+}
+
+void
+cleanup_module(void)
+{
+ if (MOD_IN_USE)
+ printk("at1700: device busy, remove delayed\n");
+ else
+ {
+ unregister_netdev(&dev_at1700);
+ }
+}
+#endif /* MODULE */
/*
* Local variables:
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov
with Sam's (original) version of this