Searched refs:oright (Results 1 – 3 of 3) sorted by relevance
/linux-6.1.9/sound/pci/ |
D | sonicvibes.c | 629 int vol, oleft, oright, mleft, mright; in snd_sonicvibes_interrupt() local 637 oright = mright = snd_sonicvibes_in1(sonic, SV_IREG_RIGHT_ANALOG); in snd_sonicvibes_interrupt() 639 oright &= 0x1f; in snd_sonicvibes_interrupt() 645 oright += vol; in snd_sonicvibes_interrupt() 646 if (oright < 0) in snd_sonicvibes_interrupt() 647 oright = 0; in snd_sonicvibes_interrupt() 648 if (oright > 0x1f) in snd_sonicvibes_interrupt() 649 oright = 0x1f; in snd_sonicvibes_interrupt() 655 oright |= mright & 0x80; in snd_sonicvibes_interrupt() 657 snd_sonicvibes_out1(sonic, SV_IREG_RIGHT_ANALOG, oright); in snd_sonicvibes_interrupt()
|
D | cmipci.c | 2050 int left, right, oleft, oright; in snd_cmipci_put_volume() local 2071 oright = snd_cmipci_mixer_read(cm, reg.right_reg); in snd_cmipci_put_volume() 2073 oright = left; in snd_cmipci_put_volume() 2074 right |= oright & ~(reg.mask << reg.right_shift); in snd_cmipci_put_volume() 2075 change |= right != oright; in snd_cmipci_put_volume()
|
/linux-6.1.9/sound/isa/sb/ |
D | sb_mixer.c | 138 unsigned char left, right, oleft, oright; in snd_sbmixer_put_double() local 151 oright = snd_sbmixer_read(sb, right_reg); in snd_sbmixer_put_double() 153 right = (oright & ~(mask << right_shift)) | right; in snd_sbmixer_put_double() 154 change = left != oleft || right != oright; in snd_sbmixer_put_double()
|