Added eicon driver init.

This commit is contained in:
Armin Schindler 1999-03-29 11:13:23 +00:00
parent cb14f30d6f
commit 4a7220395a
1 changed files with 10 additions and 0 deletions

View File

@ -19,6 +19,9 @@
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
* $Log$
* Revision 1.7 1998/02/20 17:24:28 fritz
* Added ACT2000 init.
*
* Revision 1.6 1997/04/23 18:56:03 fritz
* Old Teles driver removed, Changed doc and scripts accordingly.
*
@ -53,6 +56,10 @@ extern void HiSax_init(void);
extern void pcbit_init(void);
#endif
#ifdef CONFIG_ISDN_DRV_EICON
extern void eicon_init(void);
#endif
#ifdef CONFIG_ISDN_DRV_AVMB1
extern void avmb1_init(void);
extern void capi_init(void);
@ -85,4 +92,7 @@ isdn_cards_init(void)
#if CONFIG_ISDN_DRV_ACT2000
act2000_init();
#endif
#if CONFIG_ISDN_DRV_EICON
eicon_init();
#endif
}