Lines Matching defs:uinfo
159 struct snd_ctl_elem_info *uinfo)
161 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
162 uinfo->count = 1;
163 uinfo->value.integer.min = 0;
164 uinfo->value.integer.max = LONG_MAX;
195 struct snd_ctl_elem_info *uinfo)
197 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
198 uinfo->count = 1;
199 uinfo->value.integer.min = 0;
200 uinfo->value.integer.max = 192000;
213 static int snd_ak4114_spdif_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
215 uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
216 uinfo->count = 1;
253 static int snd_ak4114_spdif_mask_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
255 uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
256 uinfo->count = 1;
267 static int snd_ak4114_spdif_pinfo(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
269 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
270 uinfo->value.integer.min = 0;
271 uinfo->value.integer.max = 0xffff;
272 uinfo->count = 4;
291 static int snd_ak4114_spdif_qinfo(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
293 uinfo->type = SNDRV_CTL_ELEM_TYPE_BYTES;
294 uinfo->count = AK4114_REG_QSUB_SIZE;