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 if ((err = snd_ctl_add(card, snd_ctl_new1(&temp, chip))) < 0)
920 temp = vx_control_audio_gain;
921 temp.index = i;
922 temp.name = "PCM Playback Volume";
923 temp.private_value = val;
924 if ((err = snd_ctl_add(card, snd_ctl_new1(&temp, chip))) < 0)
926 temp = vx_control_output_switch;
927 temp.index = i;
928 temp.private_value = val;
929 if ((err = snd_ctl_add(card, snd_ctl_new1(&temp, chip))) < 0)
931 temp = vx_control_monitor_gain;
932 temp.index = i;
933 temp.private_value = val;
934 if ((err = snd_ctl_add(card, snd_ctl_new1(&temp, chip))) < 0)
936 temp = vx_control_monitor_switch;
937 temp.index = i;
938 temp.private_value = val;
939 if ((err = snd_ctl_add(card, snd_ctl_new1(&temp, chip))) < 0)
943 temp = vx_control_audio_gain;
944 temp.index = i;
945 temp.name = "PCM Capture Volume";
946 temp.private_value = (i * 2) | (1 << 8);
947 if ((err = snd_ctl_add(card, snd_ctl_new1(&temp, chip))) < 0)
968 temp = vx_control_saturation;
969 temp.index = i;
970 temp.private_value = val;
971 if ((err = snd_ctl_add(card, snd_ctl_new1(&temp, chip))) < 0)
975 temp = vx_control_vu_meter;
976 temp.index = i;
977 temp.name = name;
978 temp.private_value = val;
979 if ((err = snd_ctl_add(card, snd_ctl_new1(&temp, chip))) < 0)
982 temp = vx_control_peak_meter;
983 temp.index = i;
984 temp.name = name;
985 temp.private_value = val;
986 if ((err = snd_ctl_add(card, snd_ctl_new1(&temp, chip))) < 0)