root/drivers/isdn/teles/config.c

/* [previous][next][first][last][top][bottom][index][help] */
   1 /* $Id: config.c,v 1.1 1996/04/13 10:23:11 fritz Exp $
   2  *
   3  * $Log: config.c,v $
   4  * Revision 1.1  1996/04/13 10:23:11  fritz
   5  * Initial revision
   6  *
   7  *
   8  */
   9 #define __NO_VERSION__
  10 #include <linux/types.h>
  11 #include <linux/stddef.h>
  12 #include <linux/timer.h>
  13 #include "teles.h"
  14 
  15 /*
  16  * This structure array contains one entry per card. An entry looks
  17  * like this:
  18  * 
  19  * { membase,irq,portbase,protocol,NULL }
  20  *
  21  * protocol can be either ISDN_PTYPE_EURO or ISDN_PTYPE_1TR6
  22  *
  23  * Cards which don't have an io port (Teles 8 bit cards for
  24  * example) can be entered with io port 0x0
  25  *
  26  * For the Teles 16.3, membase has to be set to 0.
  27  *
  28  */
  29 
  30 struct IsdnCard cards[] =
  31 {
  32         {(byte *) 0xd0000, 15, 0xd80, ISDN_PTYPE_EURO, NULL},   /* example */
  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         {NULL, 0, 0, 0, NULL},
  41         {NULL, 0, 0, 0, NULL},
  42         {NULL, 0, 0, 0, NULL},
  43         {NULL, 0, 0, 0, NULL},
  44         {NULL, 0, 0, 0, NULL},
  45         {NULL, 0, 0, 0, NULL},
  46         {NULL, 0, 0, 0, NULL},
  47         {NULL, 0, 0, 0, NULL},
  48 };

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