Home
last modified time | relevance | path

Searched refs:ngain (Results 1 – 2 of 2) sorted by relevance

/linux-6.15/sound/pci/ca0106/
H A Dca0106_mixer.c99 unsigned int ngain, ogain; in ca0106_set_i2c_capture_source() local
103 ngain = emu->i2c_capture_volume[val][0]; /* Left */ in ca0106_set_i2c_capture_source()
105 if (force || ngain != ogain) in ca0106_set_i2c_capture_source()
109 if (force || ngain != ogain) in ca0106_set_i2c_capture_source()
476 unsigned int ngain; in snd_ca0106_i2c_volume_put() local
482 ngain = ucontrol->value.integer.value[0]; in snd_ca0106_i2c_volume_put()
483 if (ngain > 0xff) in snd_ca0106_i2c_volume_put()
485 if (ogain != ngain) { in snd_ca0106_i2c_volume_put()
492 ngain = ucontrol->value.integer.value[1]; in snd_ca0106_i2c_volume_put()
493 if (ngain > 0xff) in snd_ca0106_i2c_volume_put()
[all …]
/linux-6.15/sound/pci/emu10k1/
H A Demumixer.c1197 unsigned int ngain, ogain; in snd_audigy_i2c_capture_source_put() local
1221 ngain = emu->i2c_capture_volume[source_id][0]; /* Left */ in snd_audigy_i2c_capture_source_put()
1223 if (ngain != ogain) in snd_audigy_i2c_capture_source_put()
1224 snd_emu10k1_i2c_write(emu, ADC_ATTEN_ADCL, ((ngain) & 0xff)); in snd_audigy_i2c_capture_source_put()
1225 ngain = emu->i2c_capture_volume[source_id][1]; /* Right */ in snd_audigy_i2c_capture_source_put()
1227 if (ngain != ogain) in snd_audigy_i2c_capture_source_put()
1228 snd_emu10k1_i2c_write(emu, ADC_ATTEN_ADCR, ((ngain) & 0xff)); in snd_audigy_i2c_capture_source_put()