summaryrefslogtreecommitdiffstats
path: root/drivers/char/isicom.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/char/isicom.c')
-rw-r--r--drivers/char/isicom.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/drivers/char/isicom.c b/drivers/char/isicom.c
index 58ce881b3..ba72b616a 100644
--- a/drivers/char/isicom.c
+++ b/drivers/char/isicom.c
@@ -13,6 +13,23 @@
* (fixed range check bug as a side effect)
* Printk clean up
* 9/12/98 alan@redhat.com Rough port to 2.1.x
+ *
+ *
+ * ***********************************************************
+ *
+ * To use this driver you also need the support package. You
+ * can find this in RPM format on
+ * ftp://ftp.linux.org.uk/pub/linux/alan
+ *
+ * You can find the original tools for this direct from Multitech
+ * ftp://ftp.multitech.com/ISI-Cards/
+ *
+ * Having installed the cards the module options (/etc/conf.modules)
+ *
+ * options isicom io=card1,card2,card3,card4 irq=card1,card2,card3,card4
+ *
+ * Omit those entries for boards you don't have installed.
+ *
*/
#include <linux/module.h>
@@ -114,6 +131,7 @@ static int ISILoad_open(struct inode *inode, struct file *filp)
#ifdef ISICOM_DEBUG
printk(KERN_DEBUG "ISILoad:Firmware loader Opened!!!\n");
#endif
+ MOD_INC_USE_COUNT;
return 0;
}
@@ -122,6 +140,7 @@ static int ISILoad_release(struct inode *inode, struct file *filp)
#ifdef ISICOM_DEBUG
printk(KERN_DEBUG "ISILoad:Firmware loader Close(Release)d\n",);
#endif
+ MOD_DEC_USE_COUNT;
return 0;
}