Changeset 598 for GPL/trunk/alsa-kernel/include/sound/control.h
- 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/include/sound/control.h
r426 r598 57 57 struct snd_kcontrol_volatile { 58 58 struct snd_ctl_file *owner; /* locked */ 59 pid_t owner_pid;60 59 unsigned int access; /* access rights */ 61 60 }; … … 95 94 #define snd_kctl_event(n) list_entry(n, struct snd_kctl_event, list) 96 95 96 struct pid; 97 97 98 struct snd_ctl_file { 98 99 struct list_head list; /* list of all control files */ 99 100 struct snd_card *card; 100 pid_tpid;101 struct pid *pid; 101 102 int prefer_pcm_subdevice; 102 103 int prefer_rawmidi_subdevice; … … 167 168 168 169 /* 169 * Frequently used control callbacks 170 * Frequently used control callbacks/helpers 170 171 */ 171 172 int snd_ctl_boolean_mono_info(struct snd_kcontrol *kcontrol, … … 173 174 int snd_ctl_boolean_stereo_info(struct snd_kcontrol *kcontrol, 174 175 struct snd_ctl_elem_info *uinfo); 176 int snd_ctl_enum_info(struct snd_ctl_elem_info *info, unsigned int channels, 177 unsigned int items, const char *const names[]); 175 178 176 179 /*
Note:
See TracChangeset
for help on using the changeset viewer.