nvol              375 sound/pci/ice1712/aureon.c 	unsigned short ovol, nvol;
nvol              381 sound/pci/ice1712/aureon.c 	nvol = (0x1F - ucontrol->value.integer.value[0]) & 0x001F;
nvol              383 sound/pci/ice1712/aureon.c 		nvol |= ((0x1F - ucontrol->value.integer.value[1]) << 8) & 0x1F00;
nvol              384 sound/pci/ice1712/aureon.c 	nvol |= ovol & ~0x1F1F;
nvol              386 sound/pci/ice1712/aureon.c 	change = (ovol != nvol);
nvol              388 sound/pci/ice1712/aureon.c 		aureon_ac97_write(ice, kcontrol->private_value & 0x7F, nvol);
nvol              416 sound/pci/ice1712/aureon.c 	unsigned short ovol, nvol;
nvol              422 sound/pci/ice1712/aureon.c 	nvol = (ucontrol->value.integer.value[0] ? 0x0000 : 0x8000) | (ovol & ~0x8000);
nvol              424 sound/pci/ice1712/aureon.c 	change = (ovol != nvol);
nvol              426 sound/pci/ice1712/aureon.c 		aureon_ac97_write(ice, kcontrol->private_value & 0x7F, nvol);
nvol              453 sound/pci/ice1712/aureon.c 	unsigned short ovol, nvol;
nvol              459 sound/pci/ice1712/aureon.c 	nvol = (ucontrol->value.integer.value[0] ? 0x0000 : 0x0020) | (ovol & ~0x0020);
nvol              461 sound/pci/ice1712/aureon.c 	change = (ovol != nvol);
nvol              463 sound/pci/ice1712/aureon.c 		aureon_ac97_write(ice, AC97_MIC, nvol);
nvol              656 sound/pci/ice1712/aureon.c 	unsigned short ovol, nvol;
nvol              662 sound/pci/ice1712/aureon.c 	nvol = (ovol & ~0x02) | (ucontrol->value.integer.value[0] ? 0x02 : 0x00);
nvol              663 sound/pci/ice1712/aureon.c 	change = (ovol != nvol);
nvol              665 sound/pci/ice1712/aureon.c 		wm_put(ice, WM_OUT_MUX1, nvol);
nvol              684 sound/pci/ice1712/aureon.c 	unsigned char nvol;
nvol              687 sound/pci/ice1712/aureon.c 		nvol = 0;
nvol              689 sound/pci/ice1712/aureon.c 		nvol = ((vol % WM_VOL_CNT) * (master % WM_VOL_CNT)) /
nvol              691 sound/pci/ice1712/aureon.c 		nvol += 0x1b;
nvol              694 sound/pci/ice1712/aureon.c 	wm_put(ice, index, nvol);
nvol              695 sound/pci/ice1712/aureon.c 	wm_put_nocache(ice, index, 0x180 | nvol);
nvol              958 sound/pci/ice1712/aureon.c 	unsigned short ovol, nvol;
nvol              961 sound/pci/ice1712/aureon.c 	nvol = ucontrol->value.integer.value[0];
nvol              962 sound/pci/ice1712/aureon.c 	if (nvol > PCM_RES)
nvol              965 sound/pci/ice1712/aureon.c 	nvol = (nvol ? (nvol + PCM_MIN) : 0) & 0xff;
nvol              967 sound/pci/ice1712/aureon.c 	if (ovol != nvol) {
nvol              968 sound/pci/ice1712/aureon.c 		wm_put(ice, WM_DAC_DIG_MASTER_ATTEN, nvol); /* prelatch */
nvol              969 sound/pci/ice1712/aureon.c 		wm_put_nocache(ice, WM_DAC_DIG_MASTER_ATTEN, nvol | 0x100); /* update */
nvol             1048 sound/pci/ice1712/aureon.c 	unsigned short ovol, nvol;
nvol             1054 sound/pci/ice1712/aureon.c 		nvol = ucontrol->value.integer.value[i] & 0x1f;
nvol             1056 sound/pci/ice1712/aureon.c 		if ((ovol & 0x1f) != nvol) {
nvol             1057 sound/pci/ice1712/aureon.c 			wm_put(ice, idx, nvol | (ovol & ~0x1f));
nvol              268 sound/pci/ice1712/phase.c 	unsigned char nvol;
nvol              271 sound/pci/ice1712/phase.c 		nvol = 0;
nvol              273 sound/pci/ice1712/phase.c 		nvol = 127 - wm_vol[(((vol & ~WM_VOL_MUTE) *
nvol              276 sound/pci/ice1712/phase.c 	wm_put(ice, index, nvol);
nvol              277 sound/pci/ice1712/phase.c 	wm_put_nocache(ice, index, 0x180 | nvol);
nvol              653 sound/pci/ice1712/phase.c 	unsigned short ovol, nvol;
nvol              656 sound/pci/ice1712/phase.c 	nvol = ucontrol->value.integer.value[0];
nvol              657 sound/pci/ice1712/phase.c 	if (nvol > PCM_RES)
nvol              660 sound/pci/ice1712/phase.c 	nvol = (nvol ? (nvol + PCM_MIN) : 0) & 0xff;
nvol              662 sound/pci/ice1712/phase.c 	if (ovol != nvol) {
nvol              663 sound/pci/ice1712/phase.c 		wm_put(ice, WM_DAC_DIG_MASTER_ATTEN, nvol); /* prelatch */
nvol              665 sound/pci/ice1712/phase.c 		wm_put_nocache(ice, WM_DAC_DIG_MASTER_ATTEN, nvol | 0x100);
nvol              183 sound/pci/ice1712/pontis.c 	unsigned short ovol, nvol;
nvol              188 sound/pci/ice1712/pontis.c 		nvol = ucontrol->value.integer.value[i];
nvol              189 sound/pci/ice1712/pontis.c 		nvol = nvol ? (nvol + ADC_MIN) : 0;
nvol              192 sound/pci/ice1712/pontis.c 		if (ovol != nvol) {
nvol              193 sound/pci/ice1712/pontis.c 			wm_put(ice, idx, nvol);
nvol              162 sound/pci/ice1712/prodigy192.c 	unsigned char tmp, ovol, nvol;
nvol              169 sound/pci/ice1712/prodigy192.c 	nvol = ucontrol->value.integer.value[0];
nvol              172 sound/pci/ice1712/prodigy192.c 	change = (ovol != nvol);
nvol              174 sound/pci/ice1712/prodigy192.c 		ovol =  (0x7f - nvol) | (tmp & 0x80);
nvol              179 sound/pci/ice1712/prodigy192.c 		stac9460_put(ice, idx, (0x7f - nvol) | (tmp & 0x80));
nvol              253 sound/pci/ice1712/prodigy192.c 	unsigned char ovol, nvol;
nvol              258 sound/pci/ice1712/prodigy192.c 		nvol = ucontrol->value.integer.value[i] & 0x0f;
nvol              260 sound/pci/ice1712/prodigy192.c 		change = ((ovol & 0x0f)  != nvol);
nvol              262 sound/pci/ice1712/prodigy192.c 			stac9460_put(ice, reg, (0x0f - nvol) | (ovol & ~0x0f));
nvol              315 sound/pci/ice1712/prodigy_hifi.c 	unsigned char nvol;
nvol              318 sound/pci/ice1712/prodigy_hifi.c 		nvol = 0;
nvol              320 sound/pci/ice1712/prodigy_hifi.c 		nvol = (((vol & ~WM_VOL_MUTE) * (master & ~WM_VOL_MUTE)) / 128)
nvol              322 sound/pci/ice1712/prodigy_hifi.c 		nvol = (nvol ? (nvol + DAC_MIN) : 0) & 0xff;
nvol              325 sound/pci/ice1712/prodigy_hifi.c 	wm_put(ice, index, nvol);
nvol              326 sound/pci/ice1712/prodigy_hifi.c 	wm_put_nocache(ice, index, 0x100 | nvol);
nvol              332 sound/pci/ice1712/prodigy_hifi.c 	unsigned char nvol;
nvol              335 sound/pci/ice1712/prodigy_hifi.c 		nvol = 0;
nvol              337 sound/pci/ice1712/prodigy_hifi.c 		nvol = (((vol & ~WM_VOL_MUTE) * (master & ~WM_VOL_MUTE)) / 128)
nvol              339 sound/pci/ice1712/prodigy_hifi.c 		nvol = (nvol ? (nvol + DAC_MIN) : 0) & 0xff;
nvol              342 sound/pci/ice1712/prodigy_hifi.c 	wm8766_spi_write(ice, index, (0x0100 | nvol));
nvol              603 sound/pci/ice1712/prodigy_hifi.c 	unsigned short ovol, nvol;
nvol              608 sound/pci/ice1712/prodigy_hifi.c 		nvol = ucontrol->value.integer.value[i];
nvol              609 sound/pci/ice1712/prodigy_hifi.c 		nvol = nvol ? (nvol + ADC_MIN) : 0;
nvol              612 sound/pci/ice1712/prodigy_hifi.c 		if (ovol != nvol) {
nvol              613 sound/pci/ice1712/prodigy_hifi.c 			wm_put(ice, idx, nvol);
nvol              218 sound/pci/ice1712/wtm.c 	unsigned char tmp, ovol, nvol;
nvol              223 sound/pci/ice1712/wtm.c 		nvol = ucontrol->value.integer.value[0] & 0x7f;
nvol              226 sound/pci/ice1712/wtm.c 		change = (ovol != nvol);
nvol              228 sound/pci/ice1712/wtm.c 			stac9460_put(ice, idx, (0x7f - nvol) | (tmp & 0x80));
nvol              229 sound/pci/ice1712/wtm.c 			stac9460_2_put(ice, idx, (0x7f - nvol) | (tmp & 0x80));
nvol              234 sound/pci/ice1712/wtm.c 		nvol = ucontrol->value.integer.value[0] & 0x7f;
nvol              240 sound/pci/ice1712/wtm.c 		change = (ovol != nvol);
nvol              243 sound/pci/ice1712/wtm.c 				stac9460_put(ice, idx, (0x7f - nvol) |
nvol              246 sound/pci/ice1712/wtm.c 				stac9460_2_put(ice, idx-6, (0x7f - nvol) |
nvol              355 sound/pci/ice1712/wtm.c 	unsigned char ovol, nvol;
nvol              362 sound/pci/ice1712/wtm.c 			nvol = ucontrol->value.integer.value[i] & 0x0f;
nvol              364 sound/pci/ice1712/wtm.c 			change = ((ovol & 0x0f) != nvol);
nvol              366 sound/pci/ice1712/wtm.c 				stac9460_put(ice, reg, (0x0f - nvol) |
nvol              372 sound/pci/ice1712/wtm.c 			nvol = ucontrol->value.integer.value[i] & 0x0f;
nvol              374 sound/pci/ice1712/wtm.c 			change = ((ovol & 0x0f) != nvol);
nvol              376 sound/pci/ice1712/wtm.c 				stac9460_2_put(ice, reg, (0x0f - nvol) |