root/drivers/isdn/isdn_cards.c

/* [previous][next][first][last][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. isdn_cards_init

   1 
   2 #include <linux/config.h>
   3 
   4 #ifdef CONFIG_ISDN_DRV_ICN
   5 extern void icn_init(void);
   6 #endif
   7 
   8 #ifdef CONFIG_ISDN_DRV_TELES
   9 extern void teles_init(void);
  10 #endif
  11 
  12 void isdn_cards_init(void)
     /* [previous][next][first][last][top][bottom][index][help] */
  13 {
  14 #if CONFIG_ISDN_DRV_ICN
  15         icn_init();
  16 #endif
  17 #if CONFIG_ISDN_DRV_TELES
  18         teles_init();
  19 #endif
  20 }
  21 

/* [previous][next][first][last][top][bottom][index][help] */