Lines Matching refs:private_value
188 unsigned int addr = BASE2ADDR(kcontrol->private_value & 0xff); in snd_pmac_burgundy_get_volume()
189 int shift = (kcontrol->private_value >> 8) & 0xff; in snd_pmac_burgundy_get_volume()
199 unsigned int addr = BASE2ADDR(kcontrol->private_value & 0xff); in snd_pmac_burgundy_put_volume()
200 int shift = (kcontrol->private_value >> 8) & 0xff; in snd_pmac_burgundy_put_volume()
215 .private_value = ((ADDR2BASE(addr) & 0xff) | ((shift) << 8)) }
264 unsigned int addr = BASE2ADDR(kcontrol->private_value & 0xff); in snd_pmac_burgundy_get_volume_2b()
265 int off = kcontrol->private_value & 0x300; in snd_pmac_burgundy_get_volume_2b()
275 unsigned int addr = BASE2ADDR(kcontrol->private_value & 0xff); in snd_pmac_burgundy_put_volume_2b()
276 int off = kcontrol->private_value & 0x300; in snd_pmac_burgundy_put_volume_2b()
291 .private_value = ((ADDR2BASE(addr) & 0xff) | ((off) << 8)) }
299 int stereo = (kcontrol->private_value >> 24) & 1; in snd_pmac_burgundy_info_gain()
311 unsigned int addr = BASE2ADDR(kcontrol->private_value & 0xff); in snd_pmac_burgundy_get_gain()
312 int stereo = (kcontrol->private_value >> 24) & 1; in snd_pmac_burgundy_get_gain()
313 int atten = (kcontrol->private_value >> 25) & 1; in snd_pmac_burgundy_get_gain()
329 unsigned int addr = BASE2ADDR(kcontrol->private_value & 0xff); in snd_pmac_burgundy_put_gain()
330 int stereo = (kcontrol->private_value >> 24) & 1; in snd_pmac_burgundy_put_gain()
331 int atten = (kcontrol->private_value >> 25) & 1; in snd_pmac_burgundy_put_gain()
353 .private_value = (ADDR2BASE(addr) | ((stereo) << 24) | ((atten) << 25)) }
361 int stereo = (kcontrol->private_value >> 24) & 1; in snd_pmac_burgundy_info_switch_w()
373 unsigned int addr = BASE2ADDR((kcontrol->private_value >> 16) & 0xff); in snd_pmac_burgundy_get_switch_w()
374 int lmask = 1 << (kcontrol->private_value & 0xff); in snd_pmac_burgundy_get_switch_w()
375 int rmask = 1 << ((kcontrol->private_value >> 8) & 0xff); in snd_pmac_burgundy_get_switch_w()
376 int stereo = (kcontrol->private_value >> 24) & 1; in snd_pmac_burgundy_get_switch_w()
388 unsigned int addr = BASE2ADDR((kcontrol->private_value >> 16) & 0xff); in snd_pmac_burgundy_put_switch_w()
389 int lmask = 1 << (kcontrol->private_value & 0xff); in snd_pmac_burgundy_put_switch_w()
390 int rmask = 1 << ((kcontrol->private_value >> 8) & 0xff); in snd_pmac_burgundy_put_switch_w()
391 int stereo = (kcontrol->private_value >> 24) & 1; in snd_pmac_burgundy_put_switch_w()
408 .private_value = ((lbit) | ((rbit) << 8)\
417 int stereo = (kcontrol->private_value >> 24) & 1; in snd_pmac_burgundy_info_switch_b()
429 unsigned int addr = BASE2ADDR((kcontrol->private_value >> 16) & 0xff); in snd_pmac_burgundy_get_switch_b()
430 int lmask = kcontrol->private_value & 0xff; in snd_pmac_burgundy_get_switch_b()
431 int rmask = (kcontrol->private_value >> 8) & 0xff; in snd_pmac_burgundy_get_switch_b()
432 int stereo = (kcontrol->private_value >> 24) & 1; in snd_pmac_burgundy_get_switch_b()
444 unsigned int addr = BASE2ADDR((kcontrol->private_value >> 16) & 0xff); in snd_pmac_burgundy_put_switch_b()
445 int lmask = kcontrol->private_value & 0xff; in snd_pmac_burgundy_put_switch_b()
446 int rmask = (kcontrol->private_value >> 8) & 0xff; in snd_pmac_burgundy_put_switch_b()
447 int stereo = (kcontrol->private_value >> 24) & 1; in snd_pmac_burgundy_put_switch_b()
464 .private_value = ((lmask) | ((rmask) << 8)\