Release 4.15 drivers/isdn/hardware/eicon/diva_didd.c
  
  
  
/* $Id: diva_didd.c,v 1.13.6.4 2005/02/11 19:40:25 armin Exp $
 *
 * DIDD Interface module for Eicon active cards.
 *
 * Functions are in dadapter.c
 *
 * Copyright 2002-2003 by Armin Schindler (mac@melware.de)
 * Copyright 2002-2003 Cytronics & Melware (info@melware.de)
 *
 * This software may be used and distributed according to the terms
 * of the GNU General Public License, incorporated herein by reference.
 */
#include <linux/module.h>
#include <linux/init.h>
#include <linux/kernel.h>
#include <linux/proc_fs.h>
#include <linux/seq_file.h>
#include <net/net_namespace.h>
#include "platform.h"
#include "di_defs.h"
#include "dadapter.h"
#include "divasync.h"
#include "did_vers.h"
static char *main_revision = "$Revision: 1.13.6.4 $";
static char *DRIVERNAME =
	"Eicon DIVA - DIDD table (http://www.melware.net)";
static char *DRIVERLNAME = "divadidd";
char *DRIVERRELEASE_DIDD = "2.0";
MODULE_DESCRIPTION("DIDD table driver for diva drivers");
MODULE_AUTHOR("Cytronics & Melware, Eicon Networks");
MODULE_SUPPORTED_DEVICE("Eicon diva drivers");
MODULE_LICENSE("GPL");
#define DBG_MINIMUM  (DL_LOG + DL_FTL + DL_ERR)
#define DBG_DEFAULT  (DBG_MINIMUM + DL_XLOG + DL_REG)
extern int diddfunc_init(void);
extern void diddfunc_finit(void);
extern void DIVA_DIDD_Read(void *, int);
static struct proc_dir_entry *proc_didd;
struct proc_dir_entry *proc_net_eicon = NULL;
EXPORT_SYMBOL(DIVA_DIDD_Read);
EXPORT_SYMBOL(proc_net_eicon);
static char *getrev(const char *revision)
{
	char *rev;
	char *p;
	if ((p = strchr(revision, ':'))) {
		rev = p + 2;
		p = strchr(rev, '$');
		*--p = 0;
	} else
		rev = "1.0";
	return rev;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Armin Schindler | 64 | 100.00% | 1 | 100.00% | 
| Total | 64 | 100.00% | 1 | 100.00% | 
static int divadidd_proc_show(struct seq_file *m, void *v)
{
	char tmprev[32];
	strcpy(tmprev, main_revision);
	seq_printf(m, "%s\n", DRIVERNAME);
	seq_printf(m, "name     : %s\n", DRIVERLNAME);
	seq_printf(m, "release  : %s\n", DRIVERRELEASE_DIDD);
	seq_printf(m, "build    : %s(%s)\n",
		   diva_didd_common_code_build, DIVA_BUILD);
	seq_printf(m, "revision : %s\n", getrev(tmprev));
	return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Armin Schindler | 65 | 80.25% | 2 | 66.67% | 
| Alexey Dobriyan | 16 | 19.75% | 1 | 33.33% | 
| Total | 81 | 100.00% | 3 | 100.00% | 
static int divadidd_proc_open(struct inode *inode, struct file *file)
{
	return single_open(file, divadidd_proc_show, NULL);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Alexey Dobriyan | 23 | 88.46% | 1 | 50.00% | 
| Armin Schindler | 3 | 11.54% | 1 | 50.00% | 
| Total | 26 | 100.00% | 2 | 100.00% | 
static const struct file_operations divadidd_proc_fops = {
	.owner		= THIS_MODULE,
	.open		= divadidd_proc_open,
	.read		= seq_read,
	.llseek		= seq_lseek,
	.release	= single_release,
};
static int __init create_proc(void)
{
	proc_net_eicon = proc_mkdir("eicon", init_net.proc_net);
	if (proc_net_eicon) {
		proc_didd = proc_create(DRIVERLNAME, S_IRUGO, proc_net_eicon,
					&divadidd_proc_fops);
		return (1);
	}
	return (0);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Armin Schindler | 40 | 80.00% | 2 | 33.33% | 
| Eric W. Biedermann | 4 | 8.00% | 1 | 16.67% | 
| Alexey Dobriyan | 4 | 8.00% | 1 | 16.67% | 
| H Hartley Sweeten | 1 | 2.00% | 1 | 16.67% | 
| Al Viro | 1 | 2.00% | 1 | 16.67% | 
| Total | 50 | 100.00% | 6 | 100.00% | 
static void remove_proc(void)
{
	remove_proc_entry(DRIVERLNAME, proc_net_eicon);
	remove_proc_entry("eicon", init_net.proc_net);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Armin Schindler | 20 | 83.33% | 2 | 66.67% | 
| Eric W. Biedermann | 4 | 16.67% | 1 | 33.33% | 
| Total | 24 | 100.00% | 3 | 100.00% | 
static int __init divadidd_init(void)
{
	char tmprev[32];
	int ret = 0;
	printk(KERN_INFO "%s\n", DRIVERNAME);
	printk(KERN_INFO "%s: Rel:%s  Rev:", DRIVERLNAME, DRIVERRELEASE_DIDD);
	strcpy(tmprev, main_revision);
	printk("%s  Build:%s(%s)\n", getrev(tmprev),
	       diva_didd_common_code_build, DIVA_BUILD);
	if (!create_proc()) {
		printk(KERN_ERR "%s: could not create proc entry\n",
		       DRIVERLNAME);
		ret = -EIO;
		goto out;
	}
	if (!diddfunc_init()) {
		printk(KERN_ERR "%s: failed to connect to DIDD.\n",
		       DRIVERLNAME);
#ifdef MODULE
		remove_proc();
#endif
		ret = -EIO;
		goto out;
	}
out:
	return (ret);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Armin Schindler | 121 | 99.18% | 2 | 66.67% | 
| H Hartley Sweeten | 1 | 0.82% | 1 | 33.33% | 
| Total | 122 | 100.00% | 3 | 100.00% | 
static void __exit divadidd_exit(void)
{
	diddfunc_finit();
	remove_proc();
	printk(KERN_INFO "%s: module unloaded.\n", DRIVERLNAME);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Armin Schindler | 22 | 95.65% | 2 | 66.67% | 
| H Hartley Sweeten | 1 | 4.35% | 1 | 33.33% | 
| Total | 23 | 100.00% | 3 | 100.00% | 
module_init(divadidd_init);
module_exit(divadidd_exit);
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Armin Schindler | 472 | 82.95% | 3 | 33.33% | 
| Alexey Dobriyan | 79 | 13.88% | 1 | 11.11% | 
| Eric W. Biedermann | 11 | 1.93% | 1 | 11.11% | 
| H Hartley Sweeten | 3 | 0.53% | 1 | 11.11% | 
| Geert Uytterhoeven | 2 | 0.35% | 1 | 11.11% | 
| Al Viro | 1 | 0.18% | 1 | 11.11% | 
| Joe Perches | 1 | 0.18% | 1 | 11.11% | 
| Kai Germaschewski |  | 0.00% | 0 | 0.00% | 
| Total | 569 | 100.00% | 9 | 100.00% | 
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.