Lines Matching full:stereo
121 * Burgundy volume: 0 - 100, stereo, word reg
206 * Burgundy volume: 0 - 100, stereo, 2-byte reg
282 * Burgundy gain/attenuation: 0 - 15, mono/stereo, byte reg
287 int stereo = (kcontrol->private_value >> 24) & 1; in snd_pmac_burgundy_info_gain() local
289 uinfo->count = stereo + 1; in snd_pmac_burgundy_info_gain()
300 int stereo = (kcontrol->private_value >> 24) & 1; in snd_pmac_burgundy_get_gain() local
308 if (stereo) in snd_pmac_burgundy_get_gain()
318 int stereo = (kcontrol->private_value >> 24) & 1; in snd_pmac_burgundy_put_gain() local
326 if (stereo) in snd_pmac_burgundy_put_gain()
336 #define BURGUNDY_VOLUME_B(xname, xindex, addr, stereo, atten) \ argument
341 .private_value = (ADDR2BASE(addr) | ((stereo) << 24) | ((atten) << 25)) }
344 * Burgundy switch: 0/1, mono/stereo, word reg
349 int stereo = (kcontrol->private_value >> 24) & 1; in snd_pmac_burgundy_info_switch_w() local
351 uinfo->count = stereo + 1; in snd_pmac_burgundy_info_switch_w()
364 int stereo = (kcontrol->private_value >> 24) & 1; in snd_pmac_burgundy_get_switch_w() local
367 if (stereo) in snd_pmac_burgundy_get_switch_w()
379 int stereo = (kcontrol->private_value >> 24) & 1; in snd_pmac_burgundy_put_switch_w() local
382 val = oval & ~(lmask | (stereo ? rmask : 0)); in snd_pmac_burgundy_put_switch_w()
385 if (stereo && ucontrol->value.integer.value[1]) in snd_pmac_burgundy_put_switch_w()
391 #define BURGUNDY_SWITCH_W(xname, xindex, addr, lbit, rbit, stereo) \ argument
397 | (ADDR2BASE(addr) << 16) | ((stereo) << 24)) }
400 * Burgundy switch: 0/1, mono/stereo, byte reg, bit mask
405 int stereo = (kcontrol->private_value >> 24) & 1; in snd_pmac_burgundy_info_switch_b() local
407 uinfo->count = stereo + 1; in snd_pmac_burgundy_info_switch_b()
420 int stereo = (kcontrol->private_value >> 24) & 1; in snd_pmac_burgundy_get_switch_b() local
423 if (stereo) in snd_pmac_burgundy_get_switch_b()
435 int stereo = (kcontrol->private_value >> 24) & 1; in snd_pmac_burgundy_put_switch_b() local
441 if (stereo && ucontrol->value.integer.value[1]) in snd_pmac_burgundy_put_switch_b()
447 #define BURGUNDY_SWITCH_B(xname, xindex, addr, lmask, rmask, stereo) \ argument
453 | (ADDR2BASE(addr) << 16) | ((stereo) << 24)) }