Lines Matching refs:uinfo
727 static int snd_ad1816a_info_mux(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo) in snd_ad1816a_info_mux() argument
734 return snd_ctl_enum_info(uinfo, 2, 7, texts); in snd_ad1816a_info_mux()
782 static int snd_ad1816a_info_single(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo) in snd_ad1816a_info_single() argument
786 uinfo->type = mask == 1 ? SNDRV_CTL_ELEM_TYPE_BOOLEAN : SNDRV_CTL_ELEM_TYPE_INTEGER; in snd_ad1816a_info_single()
787 uinfo->count = 1; in snd_ad1816a_info_single()
788 uinfo->value.integer.min = 0; in snd_ad1816a_info_single()
789 uinfo->value.integer.max = mask; in snd_ad1816a_info_single()
847 static int snd_ad1816a_info_double(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo) in snd_ad1816a_info_double() argument
851 uinfo->type = mask == 1 ? SNDRV_CTL_ELEM_TYPE_BOOLEAN : SNDRV_CTL_ELEM_TYPE_INTEGER; in snd_ad1816a_info_double()
852 uinfo->count = 2; in snd_ad1816a_info_double()
853 uinfo->value.integer.min = 0; in snd_ad1816a_info_double()
854 uinfo->value.integer.max = mask; in snd_ad1816a_info_double()