Lines Matching defs:uinfo
133 struct snd_ctl_elem_info *uinfo)
135 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
136 uinfo->count = 1;
137 uinfo->value.integer.min = 0;
138 uinfo->value.integer.max = LONG_MAX;
169 struct snd_ctl_elem_info *uinfo)
171 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
172 uinfo->count = 1;
173 uinfo->value.integer.min = 0;
174 uinfo->value.integer.max = 1;
203 struct snd_ctl_elem_info *uinfo)
205 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
206 uinfo->count = 1;
207 uinfo->value.integer.min = 0;
208 uinfo->value.integer.max = 192000;
221 static int snd_ak4117_spdif_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
223 uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
224 uinfo->count = 1;
239 static int snd_ak4117_spdif_mask_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
241 uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
242 uinfo->count = 1;
253 static int snd_ak4117_spdif_pinfo(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
255 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
256 uinfo->value.integer.min = 0;
257 uinfo->value.integer.max = 0xffff;
258 uinfo->count = 4;
277 static int snd_ak4117_spdif_qinfo(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
279 uinfo->type = SNDRV_CTL_ELEM_TYPE_BYTES;
280 uinfo->count = AK4117_REG_QSUB_SIZE;