Lines Matching refs:shift
124 long *volume, int shift) in snd_pmac_burgundy_write_volume() argument
134 hardvolume = lvolume + (rvolume << shift); in snd_pmac_burgundy_write_volume()
135 if (shift == 8) in snd_pmac_burgundy_write_volume()
143 long *volume, int shift) in snd_pmac_burgundy_read_volume() argument
154 volume[1] = (wvolume >> shift) & 0xff; in snd_pmac_burgundy_read_volume()
176 int shift = (kcontrol->private_value >> 8) & 0xff; in snd_pmac_burgundy_get_volume() local
178 ucontrol->value.integer.value, shift); in snd_pmac_burgundy_get_volume()
187 int shift = (kcontrol->private_value >> 8) & 0xff; in snd_pmac_burgundy_put_volume() local
191 ucontrol->value.integer.value, shift); in snd_pmac_burgundy_put_volume()
192 snd_pmac_burgundy_read_volume(chip, addr, nvoices, shift); in snd_pmac_burgundy_put_volume()
197 #define BURGUNDY_VOLUME_W(xname, xindex, addr, shift) \ argument
202 .private_value = ((ADDR2BASE(addr) & 0xff) | ((shift) << 8)) }