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/include/sound/control.h

    r426 r598  
    5757struct snd_kcontrol_volatile {
    5858        struct snd_ctl_file *owner;     /* locked */
    59         pid_t owner_pid;
    6059        unsigned int access;    /* access rights */
    6160};
     
    9594#define snd_kctl_event(n) list_entry(n, struct snd_kctl_event, list)
    9695
     96struct pid;
     97
    9798struct snd_ctl_file {
    9899        struct list_head list;          /* list of all control files */
    99100        struct snd_card *card;
    100         pid_t pid;
     101        struct pid *pid;
    101102        int prefer_pcm_subdevice;
    102103        int prefer_rawmidi_subdevice;
     
    167168
    168169/*
    169  * Frequently used control callbacks
     170 * Frequently used control callbacks/helpers
    170171 */
    171172int snd_ctl_boolean_mono_info(struct snd_kcontrol *kcontrol,
     
    173174int snd_ctl_boolean_stereo_info(struct snd_kcontrol *kcontrol,
    174175                                struct snd_ctl_elem_info *uinfo);
     176int snd_ctl_enum_info(struct snd_ctl_elem_info *info, unsigned int channels,
     177                      unsigned int items, const char *const names[]);
    175178
    176179/*
Note: See TracChangeset for help on using the changeset viewer.