Lines Matching refs:private_value

175 	unsigned int addr = BASE2ADDR(kcontrol->private_value & 0xff);  in snd_pmac_burgundy_get_volume()
176 int shift = (kcontrol->private_value >> 8) & 0xff; in snd_pmac_burgundy_get_volume()
186 unsigned int addr = BASE2ADDR(kcontrol->private_value & 0xff); in snd_pmac_burgundy_put_volume()
187 int shift = (kcontrol->private_value >> 8) & 0xff; in snd_pmac_burgundy_put_volume()
202 .private_value = ((ADDR2BASE(addr) & 0xff) | ((shift) << 8)) }
251 unsigned int addr = BASE2ADDR(kcontrol->private_value & 0xff); in snd_pmac_burgundy_get_volume_2b()
252 int off = kcontrol->private_value & 0x300; in snd_pmac_burgundy_get_volume_2b()
262 unsigned int addr = BASE2ADDR(kcontrol->private_value & 0xff); in snd_pmac_burgundy_put_volume_2b()
263 int off = kcontrol->private_value & 0x300; in snd_pmac_burgundy_put_volume_2b()
278 .private_value = ((ADDR2BASE(addr) & 0xff) | ((off) << 8)) }
286 int stereo = (kcontrol->private_value >> 24) & 1; in snd_pmac_burgundy_info_gain()
298 unsigned int addr = BASE2ADDR(kcontrol->private_value & 0xff); in snd_pmac_burgundy_get_gain()
299 int stereo = (kcontrol->private_value >> 24) & 1; in snd_pmac_burgundy_get_gain()
300 int atten = (kcontrol->private_value >> 25) & 1; in snd_pmac_burgundy_get_gain()
316 unsigned int addr = BASE2ADDR(kcontrol->private_value & 0xff); in snd_pmac_burgundy_put_gain()
317 int stereo = (kcontrol->private_value >> 24) & 1; in snd_pmac_burgundy_put_gain()
318 int atten = (kcontrol->private_value >> 25) & 1; in snd_pmac_burgundy_put_gain()
340 .private_value = (ADDR2BASE(addr) | ((stereo) << 24) | ((atten) << 25)) }
348 int stereo = (kcontrol->private_value >> 24) & 1; in snd_pmac_burgundy_info_switch_w()
360 unsigned int addr = BASE2ADDR((kcontrol->private_value >> 16) & 0xff); in snd_pmac_burgundy_get_switch_w()
361 int lmask = 1 << (kcontrol->private_value & 0xff); in snd_pmac_burgundy_get_switch_w()
362 int rmask = 1 << ((kcontrol->private_value >> 8) & 0xff); in snd_pmac_burgundy_get_switch_w()
363 int stereo = (kcontrol->private_value >> 24) & 1; in snd_pmac_burgundy_get_switch_w()
375 unsigned int addr = BASE2ADDR((kcontrol->private_value >> 16) & 0xff); in snd_pmac_burgundy_put_switch_w()
376 int lmask = 1 << (kcontrol->private_value & 0xff); in snd_pmac_burgundy_put_switch_w()
377 int rmask = 1 << ((kcontrol->private_value >> 8) & 0xff); in snd_pmac_burgundy_put_switch_w()
378 int stereo = (kcontrol->private_value >> 24) & 1; in snd_pmac_burgundy_put_switch_w()
395 .private_value = ((lbit) | ((rbit) << 8)\
404 int stereo = (kcontrol->private_value >> 24) & 1; in snd_pmac_burgundy_info_switch_b()
416 unsigned int addr = BASE2ADDR((kcontrol->private_value >> 16) & 0xff); in snd_pmac_burgundy_get_switch_b()
417 int lmask = kcontrol->private_value & 0xff; in snd_pmac_burgundy_get_switch_b()
418 int rmask = (kcontrol->private_value >> 8) & 0xff; in snd_pmac_burgundy_get_switch_b()
419 int stereo = (kcontrol->private_value >> 24) & 1; in snd_pmac_burgundy_get_switch_b()
431 unsigned int addr = BASE2ADDR((kcontrol->private_value >> 16) & 0xff); in snd_pmac_burgundy_put_switch_b()
432 int lmask = kcontrol->private_value & 0xff; in snd_pmac_burgundy_put_switch_b()
433 int rmask = (kcontrol->private_value >> 8) & 0xff; in snd_pmac_burgundy_put_switch_b()
434 int stereo = (kcontrol->private_value >> 24) & 1; in snd_pmac_burgundy_put_switch_b()
451 .private_value = ((lmask) | ((rmask) << 8)\