Import 2.1.42pre1
[davej-history.git] / drivers / isdn / isdn_cards.c
blobc7f4e8b08c89b174aa8c13bc49f1b57f228ca66b
1 /* $Id: isdn_cards.c,v 1.6 1997/04/23 18:56:03 fritz Exp $
3 * Linux ISDN subsystem, initialization for non-modularized drivers.
5 * Copyright 1994,95,96 by Fritz Elfert (fritz@wuemaus.franken.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.6 1997/04/23 18:56:03 fritz
23 * Old Teles driver removed, Changed doc and scripts accordingly.
25 * Revision 1.5 1997/03/30 17:10:36 calle
26 * added support for AVM-B1-PCI card.
28 * Revision 1.4 1997/03/04 21:59:44 calle
29 * Added AVM-B1-CAPI2.0 driver
31 * Revision 1.3 1997/02/03 23:31:14 fritz
32 * Reformatted according CodingStyle
34 * Revision 1.2 1996/10/13 19:52:17 keil
35 * HiSax support
37 * Revision 1.1 1996/04/20 16:04:36 fritz
38 * Initial revision
42 #include <linux/config.h>
44 #ifdef CONFIG_ISDN_DRV_ICN
45 extern void icn_init(void);
46 #endif
48 #ifdef CONFIG_ISDN_DRV_HISAX
49 extern void HiSax_init(void);
50 #endif
52 #ifdef CONFIG_ISDN_DRV_PCBIT
53 extern void pcbit_init(void);
54 #endif
56 #ifdef CONFIG_ISDN_DRV_AVMB1
57 extern void avmb1_init(void);
58 extern void capi_init(void);
59 extern void capidrv_init(void);
60 #ifdef CONFIG_PCI
61 extern int b1pci_init(void);
62 #endif
63 #endif
65 void
66 isdn_cards_init(void)
68 #if CONFIG_ISDN_DRV_ICN
69 icn_init();
70 #endif
71 #ifdef CONFIG_ISDN_DRV_HISAX
72 HiSax_init();
73 #endif
74 #if CONFIG_ISDN_DRV_PCBIT
75 pcbit_init();
76 #endif
77 #ifdef CONFIG_ISDN_DRV_AVMB1
78 avmb1_init();
79 #ifdef CONFIG_PCI
80 b1pci_init();
81 #endif
82 capi_init();
83 capidrv_init();
84 #endif