Lines Matching refs:ovol

389 	unsigned short ovol, nvol;  in aureon_ac97_vol_put()  local
394 ovol = aureon_ac97_read(ice, kcontrol->private_value & 0x7F); in aureon_ac97_vol_put()
398 nvol |= ovol & ~0x1F1F; in aureon_ac97_vol_put()
400 change = (ovol != nvol); in aureon_ac97_vol_put()
430 unsigned short ovol, nvol; in aureon_ac97_mute_put() local
435 ovol = aureon_ac97_read(ice, kcontrol->private_value & 0x7F); in aureon_ac97_mute_put()
436 nvol = (ucontrol->value.integer.value[0] ? 0x0000 : 0x8000) | (ovol & ~0x8000); in aureon_ac97_mute_put()
438 change = (ovol != nvol); in aureon_ac97_mute_put()
467 unsigned short ovol, nvol; in aureon_ac97_micboost_put() local
472 ovol = aureon_ac97_read(ice, AC97_MIC); in aureon_ac97_micboost_put()
473 nvol = (ucontrol->value.integer.value[0] ? 0x0000 : 0x0020) | (ovol & ~0x0020); in aureon_ac97_micboost_put()
475 change = (ovol != nvol); in aureon_ac97_micboost_put()
670 unsigned short ovol, nvol; in aureon_ac97_mmute_put() local
675 ovol = wm_get(ice, WM_OUT_MUX1); in aureon_ac97_mmute_put()
676 nvol = (ovol & ~0x02) | (ucontrol->value.integer.value[0] ? 0x02 : 0x00); in aureon_ac97_mmute_put()
677 change = (ovol != nvol); in aureon_ac97_mmute_put()
972 unsigned short ovol, nvol; in wm_pcm_vol_put() local
980 ovol = wm_get(ice, WM_DAC_DIG_MASTER_ATTEN) & 0xff; in wm_pcm_vol_put()
981 if (ovol != nvol) { in wm_pcm_vol_put()
1062 unsigned short ovol, nvol; in wm_adc_vol_put() local
1069 ovol = wm_get(ice, idx); in wm_adc_vol_put()
1070 if ((ovol & 0x1f) != nvol) { in wm_adc_vol_put()
1071 wm_put(ice, idx, nvol | (ovol & ~0x1f)); in wm_adc_vol_put()