• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/ppc/

Lines Matching refs:ucontrol

263 				     struct snd_ctl_elem_value *ucontrol)
268 ucontrol->value.integer.value[0] = mix->master_vol[0];
269 ucontrol->value.integer.value[1] = mix->master_vol[1];
274 struct snd_ctl_elem_value *ucontrol)
281 change = mix->master_vol[0] != ucontrol->value.integer.value[0] ||
282 mix->master_vol[1] != ucontrol->value.integer.value[1];
284 mix->master_vol[0] = ucontrol->value.integer.value[0];
285 mix->master_vol[1] = ucontrol->value.integer.value[1];
293 struct snd_ctl_elem_value *ucontrol)
298 ucontrol->value.integer.value[0] = mix->master_switch[0];
299 ucontrol->value.integer.value[1] = mix->master_switch[1];
304 struct snd_ctl_elem_value *ucontrol)
311 change = mix->master_switch[0] != ucontrol->value.integer.value[0] ||
312 mix->master_switch[1] != ucontrol->value.integer.value[1];
314 mix->master_switch[0] = !!ucontrol->value.integer.value[0];
315 mix->master_switch[1] = !!ucontrol->value.integer.value[1];
405 struct snd_ctl_elem_value *ucontrol)
411 ucontrol->value.integer.value[0] = mix->drc_range;
416 struct snd_ctl_elem_value *ucontrol)
424 change = mix->drc_range != ucontrol->value.integer.value[0];
426 mix->drc_range = ucontrol->value.integer.value[0];
436 struct snd_ctl_elem_value *ucontrol)
442 ucontrol->value.integer.value[0] = mix->drc_enable;
447 struct snd_ctl_elem_value *ucontrol)
455 change = mix->drc_enable != ucontrol->value.integer.value[0];
457 mix->drc_enable = !!ucontrol->value.integer.value[0];
516 struct snd_ctl_elem_value *ucontrol)
523 ucontrol->value.integer.value[0] = mix->mono_vol[info->index];
528 struct snd_ctl_elem_value *ucontrol)
537 change = mix->mono_vol[info->index] != ucontrol->value.integer.value[0];
539 mix->mono_vol[info->index] = ucontrol->value.integer.value[0];
657 struct snd_ctl_elem_value *ucontrol)
664 ucontrol->value.integer.value[0] = mix->mix_vol[idx][0];
665 ucontrol->value.integer.value[1] = mix->mix_vol[idx][1];
670 struct snd_ctl_elem_value *ucontrol)
679 change = mix->mix_vol[idx][0] != ucontrol->value.integer.value[0] ||
680 mix->mix_vol[idx][1] != ucontrol->value.integer.value[1];
682 mix->mix_vol[idx][0] = ucontrol->value.integer.value[0];
683 mix->mix_vol[idx][1] = ucontrol->value.integer.value[1];
694 struct snd_ctl_elem_value *ucontrol)
713 ucontrol->value.integer.value[0] = !check_audio_gpio(gp);
718 struct snd_ctl_elem_value *ucontrol)
743 if (val != ucontrol->value.integer.value[0]) {
744 write_audio_gpio(gp, ! ucontrol->value.integer.value[0]);
777 struct snd_ctl_elem_value *ucontrol)
783 ucontrol->value.integer.value[0] = mix->capture_source;
788 struct snd_ctl_elem_value *ucontrol)
795 change = ucontrol->value.integer.value[0] != mix->capture_source;
797 mix->capture_source = !!ucontrol->value.integer.value[0];