Changeset 598 for GPL/trunk/alsa-kernel/drivers/dummy.c
- Timestamp:
- Apr 3, 2017, 4:51:56 PM (8 years ago)
- Location:
- GPL/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
GPL/trunk
-
Property svn:mergeinfo
set to
/GPL/branches/uniaud32-2.1.x merged eligible
-
Property svn:mergeinfo
set to
-
GPL/trunk/alsa-kernel/drivers/dummy.c
r587 r598 28 28 #include <linux/hrtimer.h> 29 29 #include <linux/math64.h> 30 #include <linux/module .h>30 #include <linux/moduleparam.h> 31 31 #include <sound/core.h> 32 32 #include <sound/control.h> … … 61 61 static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */ 62 62 static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */ 63 static boolenable[SNDRV_CARDS] = {1, [1 ... (SNDRV_CARDS - 1)] = 0};63 static int enable[SNDRV_CARDS] = {1, [1 ... (SNDRV_CARDS - 1)] = 0}; 64 64 static char *model[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = NULL}; 65 65 static int pcm_devs[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 1}; … … 67 67 //static int midi_devs[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 2}; 68 68 #ifdef CONFIG_HIGH_RES_TIMERS 69 static boolhrtimer = 1;69 static int hrtimer = 1; 70 70 #endif 71 static boolfake_buffer = 1;71 static int fake_buffer = 1; 72 72 73 73 module_param_array(index, int, NULL, 0444);
Note:
See TracChangeset
for help on using the changeset viewer.