Lines Matching refs:source_id
231 unsigned int source_id; in snd_ca0106_i2c_capture_source_put() local
237 source_id = ucontrol->value.enumerated.item[0] ; in snd_ca0106_i2c_capture_source_put()
238 if (source_id >= 4) in snd_ca0106_i2c_capture_source_put()
240 change = (emu->i2c_capture_source != source_id); in snd_ca0106_i2c_capture_source_put()
242 ca0106_set_i2c_capture_source(emu, source_id, 0); in snd_ca0106_i2c_capture_source_put()
462 int source_id; in snd_ca0106_i2c_volume_get() local
464 source_id = kcontrol->private_value; in snd_ca0106_i2c_volume_get()
466 ucontrol->value.integer.value[0] = emu->i2c_capture_volume[source_id][0]; in snd_ca0106_i2c_volume_get()
467 ucontrol->value.integer.value[1] = emu->i2c_capture_volume[source_id][1]; in snd_ca0106_i2c_volume_get()
477 int source_id; in snd_ca0106_i2c_volume_put() local
480 source_id = kcontrol->private_value; in snd_ca0106_i2c_volume_put()
481 ogain = emu->i2c_capture_volume[source_id][0]; /* Left */ in snd_ca0106_i2c_volume_put()
486 if (emu->i2c_capture_source == source_id) in snd_ca0106_i2c_volume_put()
488 emu->i2c_capture_volume[source_id][0] = ucontrol->value.integer.value[0]; in snd_ca0106_i2c_volume_put()
491 ogain = emu->i2c_capture_volume[source_id][1]; /* Right */ in snd_ca0106_i2c_volume_put()
496 if (emu->i2c_capture_source == source_id) in snd_ca0106_i2c_volume_put()
498 emu->i2c_capture_volume[source_id][1] = ucontrol->value.integer.value[1]; in snd_ca0106_i2c_volume_put()