root/drivers/isdn/teles/config.c

/* [previous][next][first][last][top][bottom][index][help] */
   1 #define __NO_VERSION__
   2 #include <linux/types.h>
   3 #include <linux/stddef.h>
   4 #include <linux/timer.h>
   5 #include "teles.h"
   6 
   7 /*
   8  * This structure array contains one entry per card. An entry looks
   9  * like this:
  10  * 
  11  * { membase,irq,portbase,protocol,NULL }
  12  *
  13  * protocol can be either ISDN_PTYPE_EURO or ISDN_PTYPE_1TR6
  14  *
  15  * Cards which don't have an io port (Teles 8 bit cards for
  16  * example) can be entered with io port 0x0
  17  *
  18  * For the Teles 16.3, membase has to be set to 0.
  19  *
  20  */
  21 
  22 struct IsdnCard cards[] =
  23 {
  24         {(byte *) 0xd0000, 15, 0xd80, ISDN_PTYPE_EURO, NULL},   /* example */
  25         {NULL, 0, 0, 0, NULL},
  26         {NULL, 0, 0, 0, NULL},
  27         {NULL, 0, 0, 0, NULL},
  28         {NULL, 0, 0, 0, NULL},
  29         {NULL, 0, 0, 0, NULL},
  30         {NULL, 0, 0, 0, NULL},
  31         {NULL, 0, 0, 0, NULL},
  32         {NULL, 0, 0, 0, NULL},
  33         {NULL, 0, 0, 0, NULL},
  34         {NULL, 0, 0, 0, NULL},
  35         {NULL, 0, 0, 0, NULL},
  36         {NULL, 0, 0, 0, NULL},
  37         {NULL, 0, 0, 0, NULL},
  38         {NULL, 0, 0, 0, NULL},
  39         {NULL, 0, 0, 0, NULL},
  40 };

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