Kill st_fstype member.
[linux-2.6/linux-mips.git] / drivers / isdn / isdn_cards.c
blob63da260965f3244940e483a881bb4187dcc4996d
1 /* $Id: isdn_cards.c,v 1.11 2000/05/11 22:29:20 kai 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.
23 #include <linux/config.h>
25 #ifdef CONFIG_ISDN_DRV_ICN
26 extern void icn_init(void);
27 #endif
29 #ifdef CONFIG_ISDN_DRV_HISAX
30 extern void HiSax_init(void);
31 #endif
33 #ifdef CONFIG_ISDN_DRV_PCBIT
34 extern void pcbit_init(void);
35 #endif
37 #ifdef CONFIG_ISDN_DRV_EICON
38 extern void eicon_init(void);
39 #endif
41 #ifdef CONFIG_ISDN_DRV_AVMB1
42 extern void kcapi_init(void);
43 extern void capi_init(void);
44 extern void capidrv_init(void);
45 #endif
47 void
48 isdn_cards_init(void)
50 #if CONFIG_ISDN_DRV_ICN
51 icn_init();
52 #endif
53 #ifdef CONFIG_ISDN_DRV_HISAX
54 HiSax_init();
55 #endif
56 #if CONFIG_ISDN_DRV_PCBIT
57 pcbit_init();
58 #endif
59 #ifdef CONFIG_ISDN_DRV_AVMB1
60 kcapi_init();
61 capi_init();
62 capidrv_init();
63 #endif
64 #if CONFIG_ISDN_DRV_ACT2000
65 act2000_init();
66 #endif
67 #if CONFIG_ISDN_DRV_EICON
68 eicon_init();
69 #endif