pre-2.3.4..
[davej-history.git] / drivers / isdn / isdn_cards.c
blob06fa3e7d7ffca2c69ab2d7e3fe537b873a18b86e
1 /* $Id: isdn_cards.c,v 1.9 1999/04/12 12:33:11 fritz Exp $
3 * Linux ISDN subsystem, initialization for non-modularized drivers.
5 * Copyright 1994,95,96 by Fritz Elfert (fritz@isdn4linux.de)
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.
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.
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.
21 * $Log: isdn_cards.c,v $
22 * Revision 1.9 1999/04/12 12:33:11 fritz
23 * Changes from 2.0 tree.
25 * Revision 1.8 1999/03/29 11:13:23 armin
26 * Added eicon driver init.
28 * Revision 1.7 1998/02/20 17:24:28 fritz
29 * Added ACT2000 init.
31 * Revision 1.6 1997/04/23 18:56:03 fritz
32 * Old Teles driver removed, Changed doc and scripts accordingly.
34 * Revision 1.5 1997/03/30 17:10:36 calle
35 * added support for AVM-B1-PCI card.
37 * Revision 1.4 1997/03/04 21:59:44 calle
38 * Added AVM-B1-CAPI2.0 driver
40 * Revision 1.3 1997/02/03 23:31:14 fritz
41 * Reformatted according CodingStyle
43 * Revision 1.2 1996/10/13 19:52:17 keil
44 * HiSax support
46 * Revision 1.1 1996/04/20 16:04:36 fritz
47 * Initial revision
51 #include <linux/config.h>
53 #ifdef CONFIG_ISDN_DRV_ICN
54 extern void icn_init(void);
55 #endif
57 #ifdef CONFIG_ISDN_DRV_HISAX
58 extern void HiSax_init(void);
59 #endif
61 #ifdef CONFIG_ISDN_DRV_PCBIT
62 extern void pcbit_init(void);
63 #endif
65 #ifdef CONFIG_ISDN_DRV_EICON
66 extern void eicon_init(void);
67 #endif
69 #ifdef CONFIG_ISDN_DRV_AVMB1
70 extern void avmb1_init(void);
71 extern void capi_init(void);
72 extern void capidrv_init(void);
73 #ifdef CONFIG_PCI
74 extern int b1pci_init(void);
75 #endif
76 #endif
78 void
79 isdn_cards_init(void)
81 #if CONFIG_ISDN_DRV_ICN
82 icn_init();
83 #endif
84 #ifdef CONFIG_ISDN_DRV_HISAX
85 HiSax_init();
86 #endif
87 #if CONFIG_ISDN_DRV_PCBIT
88 pcbit_init();
89 #endif
90 #ifdef CONFIG_ISDN_DRV_AVMB1
91 avmb1_init();
92 #ifdef CONFIG_PCI
93 b1pci_init();
94 #endif
95 capi_init();
96 capidrv_init();
97 #endif
98 #if CONFIG_ISDN_DRV_ACT2000
99 act2000_init();
100 #endif
101 #if CONFIG_ISDN_DRV_EICON
102 eicon_init();
103 #endif