Lines Matching defs:uinfo
940 static int snd_es18xx_info_mux(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
954 return snd_ctl_enum_info(uinfo, 1, 4, texts5Source);
957 return snd_ctl_enum_info(uinfo, 1, 5, texts5Source);
960 return snd_ctl_enum_info(uinfo, 1, 8, texts8Source);
1046 static int snd_es18xx_info_hw_volume(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
1048 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1049 uinfo->count = 2;
1050 uinfo->value.integer.min = 0;
1051 uinfo->value.integer.max = 63;
1108 static int snd_es18xx_info_single(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
1112 uinfo->type = mask == 1 ? SNDRV_CTL_ELEM_TYPE_BOOLEAN : SNDRV_CTL_ELEM_TYPE_INTEGER;
1113 uinfo->count = 1;
1114 uinfo->value.integer.min = 0;
1115 uinfo->value.integer.max = mask;
1172 static int snd_es18xx_info_double(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
1176 uinfo->type = mask == 1 ? SNDRV_CTL_ELEM_TYPE_BOOLEAN : SNDRV_CTL_ELEM_TYPE_INTEGER;
1177 uinfo->count = 2;
1178 uinfo->value.integer.min = 0;
1179 uinfo->value.integer.max = mask;