als100.c (7e95e365d5399647a41e10059e4b09826b82d78b) | als100.c (a67ff6a54095e27093ea501fb143fefe51a536c2) |
---|---|
1 2/* 3 card-als100.c - driver for Avance Logic ALS100 based soundcards. 4 Copyright (C) 1999-2000 by Massimo Piccioni <dafastidio@libero.it> 5 Copyright (C) 1999-2002 by Massimo Piccioni <dafastidio@libero.it> 6 7 Thanks to Pierfrancesco 'qM2' Passerini. 8 --- 40 unchanged lines hidden (view full) --- 49 "{Avance Logic,ALS120}," 50 "{RTL,RTL3000}}"); 51 52MODULE_AUTHOR("Massimo Piccioni <dafastidio@libero.it>"); 53MODULE_LICENSE("GPL"); 54 55static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */ 56static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */ | 1 2/* 3 card-als100.c - driver for Avance Logic ALS100 based soundcards. 4 Copyright (C) 1999-2000 by Massimo Piccioni <dafastidio@libero.it> 5 Copyright (C) 1999-2002 by Massimo Piccioni <dafastidio@libero.it> 6 7 Thanks to Pierfrancesco 'qM2' Passerini. 8 --- 40 unchanged lines hidden (view full) --- 49 "{Avance Logic,ALS120}," 50 "{RTL,RTL3000}}"); 51 52MODULE_AUTHOR("Massimo Piccioni <dafastidio@libero.it>"); 53MODULE_LICENSE("GPL"); 54 55static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */ 56static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */ |
57static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE; /* Enable this card */ | 57static bool enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE; /* Enable this card */ |
58static long port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */ 59static long mpu_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */ 60static long fm_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */ 61static int irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* PnP setup */ 62static int mpu_irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* PnP setup */ 63static int dma8[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* PnP setup */ 64static int dma16[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* PnP setup */ 65 --- 313 unchanged lines hidden --- | 58static long port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */ 59static long mpu_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */ 60static long fm_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */ 61static int irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* PnP setup */ 62static int mpu_irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* PnP setup */ 63static int dma8[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* PnP setup */ 64static int dma16[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* PnP setup */ 65 --- 313 unchanged lines hidden --- |