Ignore:
Timestamp:
Apr 3, 2017, 4:51:56 PM (8 years ago)
Author:
David Azarewicz
Message:

Merged/reintegrated v2 branch into trunk. Trunk is now v2

Location:
GPL/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • GPL/trunk

  • GPL/trunk/alsa-kernel/drivers/dummy.c

    r587 r598  
    2828#include <linux/hrtimer.h>
    2929#include <linux/math64.h>
    30 #include <linux/module.h>
     30#include <linux/moduleparam.h>
    3131#include <sound/core.h>
    3232#include <sound/control.h>
     
    6161static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX;      /* Index 0-MAX */
    6262static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR;       /* ID for this card */
    63 static bool enable[SNDRV_CARDS] = {1, [1 ... (SNDRV_CARDS - 1)] = 0};
     63static int enable[SNDRV_CARDS] = {1, [1 ... (SNDRV_CARDS - 1)] = 0};
    6464static char *model[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = NULL};
    6565static int pcm_devs[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 1};
     
    6767//static int midi_devs[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 2};
    6868#ifdef CONFIG_HIGH_RES_TIMERS
    69 static bool hrtimer = 1;
     69static int hrtimer = 1;
    7070#endif
    71 static bool fake_buffer = 1;
     71static int fake_buffer = 1;
    7272
    7373module_param_array(index, int, NULL, 0444);
Note: See TracChangeset for help on using the changeset viewer.