• Home
  • Raw
  • Download

Lines Matching refs:temp

855 	unsigned char temp;  in pcxhr_iec958_capture_byte()  local
898 temp = (unsigned char)rmh.stat[1]; in pcxhr_iec958_capture_byte()
900 temp = 0; in pcxhr_iec958_capture_byte()
903 temp <<= 1; in pcxhr_iec958_capture_byte()
905 temp |= 1; in pcxhr_iec958_capture_byte()
909 chip->chip_idx, aes_idx, temp); in pcxhr_iec958_capture_byte()
910 *aes_bits = temp; in pcxhr_iec958_capture_byte()
1111 struct snd_kcontrol_new temp; in pcxhr_create_mixer() local
1116 temp = pcxhr_control_analog_level; in pcxhr_create_mixer()
1117 temp.name = "Master Playback Volume"; in pcxhr_create_mixer()
1118 temp.private_value = 0; /* playback */ in pcxhr_create_mixer()
1120 temp.tlv.p = db_scale_a_hr222_playback; in pcxhr_create_mixer()
1122 temp.tlv.p = db_scale_analog_playback; in pcxhr_create_mixer()
1124 snd_ctl_new1(&temp, chip)); in pcxhr_create_mixer()
1135 temp = snd_pcxhr_pcm_vol; in pcxhr_create_mixer()
1136 temp.name = "PCM Playback Volume"; in pcxhr_create_mixer()
1137 temp.count = PCXHR_PLAYBACK_STREAMS; in pcxhr_create_mixer()
1138 temp.private_value = 0; /* playback */ in pcxhr_create_mixer()
1140 snd_ctl_new1(&temp, chip)); in pcxhr_create_mixer()
1164 temp = pcxhr_control_analog_level; in pcxhr_create_mixer()
1165 temp.name = "Line Capture Volume"; in pcxhr_create_mixer()
1166 temp.private_value = 1; /* capture */ in pcxhr_create_mixer()
1168 temp.tlv.p = db_scale_a_hr222_capture; in pcxhr_create_mixer()
1170 temp.tlv.p = db_scale_analog_capture; in pcxhr_create_mixer()
1173 snd_ctl_new1(&temp, chip)); in pcxhr_create_mixer()
1177 temp = snd_pcxhr_pcm_vol; in pcxhr_create_mixer()
1178 temp.name = "PCM Capture Volume"; in pcxhr_create_mixer()
1179 temp.count = 1; in pcxhr_create_mixer()
1180 temp.private_value = 1; /* capture */ in pcxhr_create_mixer()
1183 snd_ctl_new1(&temp, chip)); in pcxhr_create_mixer()