Lines Matching refs:ucontrol
735 struct snd_ctl_elem_value *ucontrol) in snd_vortex_eqtoggle_get() argument
741 ucontrol->value.integer.value[0] = eq->this54 ? 0 : 1; in snd_vortex_eqtoggle_get()
748 struct snd_ctl_elem_value *ucontrol) in snd_vortex_eqtoggle_put() argument
754 eq->this54 = ucontrol->value.integer.value[0] ? 0 : 1; in snd_vortex_eqtoggle_put()
782 snd_vortex_eq_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) in snd_vortex_eq_get() argument
790 ucontrol->value.integer.value[0] = gainL; in snd_vortex_eq_get()
791 ucontrol->value.integer.value[1] = gainR; in snd_vortex_eq_get()
796 snd_vortex_eq_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) in snd_vortex_eq_put() argument
805 if (gainL != ucontrol->value.integer.value[0]) { in snd_vortex_eq_put()
807 ucontrol->value.integer.value[0]); in snd_vortex_eq_put()
810 if (gainR != ucontrol->value.integer.value[1]) { in snd_vortex_eq_put()
812 ucontrol->value.integer.value[1]); in snd_vortex_eq_put()
840 snd_vortex_peaks_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) in snd_vortex_peaks_get() argument
853 ucontrol->value.integer.value[i] = peaks[i]; in snd_vortex_peaks_get()