OpenCores
URL https://opencores.org/ocsvn/or1k_old/or1k_old/trunk

Subversion Repositories or1k_old

[/] [or1k_old/] [trunk/] [uclinux/] [uClinux-2.0.x/] [drivers/] [isdn/] [isdn_cards.c] - Blame information for rev 199

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 199 simons
/* $Id: isdn_cards.c,v 1.1.1.1 2001-09-10 07:44:18 simons Exp $
2
 
3
 * Linux ISDN subsystem, initialization for non-modularized drivers.
4
 *
5
 * Copyright 1994-1998 by Fritz Elfert (fritz@isdn4linux.de)
6
 *
7
 * This program is free software; you can redistribute it and/or modify
8
 * it under the terms of the GNU General Public License as published by
9
 * the Free Software Foundation; either version 2, or (at your option)
10
 * any later version.
11
 *
12
 * This program is distributed in the hope that it will be useful,
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
 * GNU General Public License for more details.
16
 *
17
 * You should have received a copy of the GNU General Public License
18
 * along with this program; if not, write to the Free Software
19
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20
 *
21
 * $Log: not supported by cvs2svn $
22
 * Revision 1.1.1.1  2001/07/02 17:58:31  simons
23
 * Initial revision
24
 *
25
 * Revision 1.6.2.1  1998/11/05 22:11:40  fritz
26
 * Changed mail-address.
27
 *
28
 * Revision 1.6  1997/04/23 18:56:03  fritz
29
 * Old Teles driver removed, Changed doc and scripts accordingly.
30
 *
31
 * Revision 1.5  1997/03/30 17:10:36  calle
32
 * added support for AVM-B1-PCI card.
33
 *
34
 * Revision 1.4  1997/03/04 21:59:44  calle
35
 * Added AVM-B1-CAPI2.0 driver
36
 *
37
 * Revision 1.3  1997/02/03 23:31:14  fritz
38
 * Reformatted according CodingStyle
39
 *
40
 * Revision 1.2  1996/10/13 19:52:17  keil
41
 * HiSax support
42
 *
43
 * Revision 1.1  1996/04/20 16:04:36  fritz
44
 * Initial revision
45
 *
46
 */
47
 
48
#include <linux/config.h>
49
 
50
#ifdef CONFIG_ISDN_DRV_ICN
51
extern void icn_init(void);
52
#endif
53
 
54
#ifdef CONFIG_ISDN_DRV_HISAX
55
extern void HiSax_init(void);
56
#endif
57
 
58
#ifdef CONFIG_ISDN_DRV_PCBIT
59
extern void pcbit_init(void);
60
#endif
61
 
62
#ifdef CONFIG_ISDN_DRV_AVMB1
63
extern void avmb1_init(void);
64
extern void capi_init(void);
65
extern void capidrv_init(void);
66
#ifdef CONFIG_PCI
67
extern int b1pci_init(void);
68
#endif
69
#endif
70
 
71
void
72
isdn_cards_init(void)
73
{
74
#if CONFIG_ISDN_DRV_ICN
75
        icn_init();
76
#endif
77
#ifdef CONFIG_ISDN_DRV_HISAX
78
        HiSax_init();
79
#endif
80
#if CONFIG_ISDN_DRV_PCBIT
81
        pcbit_init();
82
#endif
83
#ifdef CONFIG_ISDN_DRV_AVMB1
84
        avmb1_init();
85
#ifdef CONFIG_PCI
86
        b1pci_init();
87
#endif
88
        capi_init();
89
        capidrv_init();
90
#endif
91
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.