Searched refs:oright (Results 1 – 3 of 3) sorted by relevance
/linux-4.4.14/sound/pci/ |
D | sonicvibes.c | 644 int vol, oleft, oright, mleft, mright; in snd_sonicvibes_interrupt() local 652 oright = mright = snd_sonicvibes_in1(sonic, SV_IREG_RIGHT_ANALOG); in snd_sonicvibes_interrupt() 654 oright &= 0x1f; in snd_sonicvibes_interrupt() 660 oright += vol; in snd_sonicvibes_interrupt() 661 if (oright < 0) in snd_sonicvibes_interrupt() 662 oright = 0; in snd_sonicvibes_interrupt() 663 if (oright > 0x1f) in snd_sonicvibes_interrupt() 664 oright = 0x1f; in snd_sonicvibes_interrupt() 670 oright |= mright & 0x80; in snd_sonicvibes_interrupt() 672 snd_sonicvibes_out1(sonic, SV_IREG_RIGHT_ANALOG, oright); in snd_sonicvibes_interrupt()
|
D | cmipci.c | 2077 int left, right, oleft, oright; in snd_cmipci_put_volume() local 2098 oright = snd_cmipci_mixer_read(cm, reg.right_reg); in snd_cmipci_put_volume() 2100 oright = left; in snd_cmipci_put_volume() 2101 right |= oright & ~(reg.mask << reg.right_shift); in snd_cmipci_put_volume() 2102 change |= right != oright; in snd_cmipci_put_volume()
|
/linux-4.4.14/sound/isa/sb/ |
D | sb_mixer.c | 153 unsigned char left, right, oleft, oright; in snd_sbmixer_put_double() local 166 oright = snd_sbmixer_read(sb, right_reg); in snd_sbmixer_put_double() 168 right = (oright & ~(mask << right_shift)) | right; in snd_sbmixer_put_double() 169 change = left != oleft || right != oright; in snd_sbmixer_put_double()
|