Lines Matching defs:temp
902 struct snd_kcontrol_new temp;
910 temp = vx_control_output_level;
911 temp.index = i;
912 temp.tlv.p = chip->hw->output_level_db_scale;
913 err = snd_ctl_add(card, snd_ctl_new1(&temp, chip));
921 temp = vx_control_audio_gain;
922 temp.index = i;
923 temp.name = "PCM Playback Volume";
924 temp.private_value = val;
925 err = snd_ctl_add(card, snd_ctl_new1(&temp, chip));
928 temp = vx_control_output_switch;
929 temp.index = i;
930 temp.private_value = val;
931 err = snd_ctl_add(card, snd_ctl_new1(&temp, chip));
934 temp = vx_control_monitor_gain;
935 temp.index = i;
936 temp.private_value = val;
937 err = snd_ctl_add(card, snd_ctl_new1(&temp, chip));
940 temp = vx_control_monitor_switch;
941 temp.index = i;
942 temp.private_value = val;
943 err = snd_ctl_add(card, snd_ctl_new1(&temp, chip));
948 temp = vx_control_audio_gain;
949 temp.index = i;
950 temp.name = "PCM Capture Volume";
951 temp.private_value = (i * 2) | (1 << 8);
952 err = snd_ctl_add(card, snd_ctl_new1(&temp, chip));
978 temp = vx_control_saturation;
979 temp.index = i;
980 temp.private_value = val;
981 err = snd_ctl_add(card, snd_ctl_new1(&temp, chip));
986 temp = vx_control_vu_meter;
987 temp.index = i;
988 temp.name = name;
989 temp.private_value = val;
990 err = snd_ctl_add(card, snd_ctl_new1(&temp, chip));
994 temp = vx_control_peak_meter;
995 temp.index = i;
996 temp.name = name;
997 temp.private_value = val;
998 err = snd_ctl_add(card, snd_ctl_new1(&temp, chip));