Lines Matching refs:private_value
176 unsigned int addr = BASE2ADDR(kcontrol->private_value & 0xff); in snd_pmac_burgundy_get_volume()
177 int shift = (kcontrol->private_value >> 8) & 0xff; in snd_pmac_burgundy_get_volume()
187 unsigned int addr = BASE2ADDR(kcontrol->private_value & 0xff); in snd_pmac_burgundy_put_volume()
188 int shift = (kcontrol->private_value >> 8) & 0xff; in snd_pmac_burgundy_put_volume()
203 .private_value = ((ADDR2BASE(addr) & 0xff) | ((shift) << 8)) }
252 unsigned int addr = BASE2ADDR(kcontrol->private_value & 0xff); in snd_pmac_burgundy_get_volume_2b()
253 int off = kcontrol->private_value & 0x300; in snd_pmac_burgundy_get_volume_2b()
263 unsigned int addr = BASE2ADDR(kcontrol->private_value & 0xff); in snd_pmac_burgundy_put_volume_2b()
264 int off = kcontrol->private_value & 0x300; in snd_pmac_burgundy_put_volume_2b()
279 .private_value = ((ADDR2BASE(addr) & 0xff) | ((off) << 8)) }
287 int stereo = (kcontrol->private_value >> 24) & 1; in snd_pmac_burgundy_info_gain()
299 unsigned int addr = BASE2ADDR(kcontrol->private_value & 0xff); in snd_pmac_burgundy_get_gain()
300 int stereo = (kcontrol->private_value >> 24) & 1; in snd_pmac_burgundy_get_gain()
301 int atten = (kcontrol->private_value >> 25) & 1; in snd_pmac_burgundy_get_gain()
317 unsigned int addr = BASE2ADDR(kcontrol->private_value & 0xff); in snd_pmac_burgundy_put_gain()
318 int stereo = (kcontrol->private_value >> 24) & 1; in snd_pmac_burgundy_put_gain()
319 int atten = (kcontrol->private_value >> 25) & 1; in snd_pmac_burgundy_put_gain()
341 .private_value = (ADDR2BASE(addr) | ((stereo) << 24) | ((atten) << 25)) }
349 int stereo = (kcontrol->private_value >> 24) & 1; in snd_pmac_burgundy_info_switch_w()
361 unsigned int addr = BASE2ADDR((kcontrol->private_value >> 16) & 0xff); in snd_pmac_burgundy_get_switch_w()
362 int lmask = 1 << (kcontrol->private_value & 0xff); in snd_pmac_burgundy_get_switch_w()
363 int rmask = 1 << ((kcontrol->private_value >> 8) & 0xff); in snd_pmac_burgundy_get_switch_w()
364 int stereo = (kcontrol->private_value >> 24) & 1; in snd_pmac_burgundy_get_switch_w()
376 unsigned int addr = BASE2ADDR((kcontrol->private_value >> 16) & 0xff); in snd_pmac_burgundy_put_switch_w()
377 int lmask = 1 << (kcontrol->private_value & 0xff); in snd_pmac_burgundy_put_switch_w()
378 int rmask = 1 << ((kcontrol->private_value >> 8) & 0xff); in snd_pmac_burgundy_put_switch_w()
379 int stereo = (kcontrol->private_value >> 24) & 1; in snd_pmac_burgundy_put_switch_w()
396 .private_value = ((lbit) | ((rbit) << 8)\
405 int stereo = (kcontrol->private_value >> 24) & 1; in snd_pmac_burgundy_info_switch_b()
417 unsigned int addr = BASE2ADDR((kcontrol->private_value >> 16) & 0xff); in snd_pmac_burgundy_get_switch_b()
418 int lmask = kcontrol->private_value & 0xff; in snd_pmac_burgundy_get_switch_b()
419 int rmask = (kcontrol->private_value >> 8) & 0xff; in snd_pmac_burgundy_get_switch_b()
420 int stereo = (kcontrol->private_value >> 24) & 1; in snd_pmac_burgundy_get_switch_b()
432 unsigned int addr = BASE2ADDR((kcontrol->private_value >> 16) & 0xff); in snd_pmac_burgundy_put_switch_b()
433 int lmask = kcontrol->private_value & 0xff; in snd_pmac_burgundy_put_switch_b()
434 int rmask = (kcontrol->private_value >> 8) & 0xff; in snd_pmac_burgundy_put_switch_b()
435 int stereo = (kcontrol->private_value >> 24) & 1; in snd_pmac_burgundy_put_switch_b()
452 .private_value = ((lmask) | ((rmask) << 8)\