Lines Matching refs:ovol

375 	unsigned short ovol, nvol;  in aureon_ac97_vol_put()  local
380 ovol = aureon_ac97_read(ice, kcontrol->private_value & 0x7F); in aureon_ac97_vol_put()
384 nvol |= ovol & ~0x1F1F; in aureon_ac97_vol_put()
386 change = (ovol != nvol); in aureon_ac97_vol_put()
416 unsigned short ovol, nvol; in aureon_ac97_mute_put() local
421 ovol = aureon_ac97_read(ice, kcontrol->private_value & 0x7F); in aureon_ac97_mute_put()
422 nvol = (ucontrol->value.integer.value[0] ? 0x0000 : 0x8000) | (ovol & ~0x8000); in aureon_ac97_mute_put()
424 change = (ovol != nvol); in aureon_ac97_mute_put()
453 unsigned short ovol, nvol; in aureon_ac97_micboost_put() local
458 ovol = aureon_ac97_read(ice, AC97_MIC); in aureon_ac97_micboost_put()
459 nvol = (ucontrol->value.integer.value[0] ? 0x0000 : 0x0020) | (ovol & ~0x0020); in aureon_ac97_micboost_put()
461 change = (ovol != nvol); in aureon_ac97_micboost_put()
656 unsigned short ovol, nvol; in aureon_ac97_mmute_put() local
661 ovol = wm_get(ice, WM_OUT_MUX1); in aureon_ac97_mmute_put()
662 nvol = (ovol & ~0x02) | (ucontrol->value.integer.value[0] ? 0x02 : 0x00); in aureon_ac97_mmute_put()
663 change = (ovol != nvol); in aureon_ac97_mmute_put()
958 unsigned short ovol, nvol; in wm_pcm_vol_put() local
966 ovol = wm_get(ice, WM_DAC_DIG_MASTER_ATTEN) & 0xff; in wm_pcm_vol_put()
967 if (ovol != nvol) { in wm_pcm_vol_put()
1048 unsigned short ovol, nvol; in wm_adc_vol_put() local
1055 ovol = wm_get(ice, idx); in wm_adc_vol_put()
1056 if ((ovol & 0x1f) != nvol) { in wm_adc_vol_put()
1057 wm_put(ice, idx, nvol | (ovol & ~0x1f)); in wm_adc_vol_put()