Lines Matching refs:old
81 unsigned char new, old; in stac9460_dac_mute_all() local
91 old = stac9460_get(ice, idx); in stac9460_dac_mute_all()
92 new = (~mute << 7 & 0x80) | (old & ~0x80); in stac9460_dac_mute_all()
93 change = (new != old); in stac9460_dac_mute_all()
110 old = stac9460_2_get(ice, idx); in stac9460_dac_mute_all()
111 new = (~mute << 7 & 0x80) | (old & ~0x80); in stac9460_dac_mute_all()
112 change = (new != old); in stac9460_dac_mute_all()
158 unsigned char new, old; in stac9460_dac_mute_put() local
164 old = stac9460_get(ice, idx); in stac9460_dac_mute_put()
166 (old & ~0x80); in stac9460_dac_mute_put()
167 change = (new != old); in stac9460_dac_mute_put()
176 old = stac9460_get(ice, idx); in stac9460_dac_mute_put()
178 old = stac9460_2_get(ice, idx - 6); in stac9460_dac_mute_put()
180 (old & ~0x80); in stac9460_dac_mute_put()
181 change = (new != old); in stac9460_dac_mute_put()
298 unsigned char new, old; in stac9460_adc_mute_put() local
306 old = stac9460_get(ice, reg); in stac9460_adc_mute_put()
308 (old&~0x80); in stac9460_adc_mute_put()
309 change = (new != old); in stac9460_adc_mute_put()
316 old = stac9460_2_get(ice, reg); in stac9460_adc_mute_put()
318 (old&~0x80); in stac9460_adc_mute_put()
319 change = (new != old); in stac9460_adc_mute_put()
429 unsigned char new, old; in stac9460_mic_sw_put() local
434 old = stac9460_get(ice, STAC946X_GENERAL_PURPOSE); in stac9460_mic_sw_put()
436 old = stac9460_2_get(ice, STAC946X_GENERAL_PURPOSE); in stac9460_mic_sw_put()
437 new = (ucontrol->value.enumerated.item[0] << 7 & 0x80) | (old & ~0x80); in stac9460_mic_sw_put()
438 change = (new != old); in stac9460_mic_sw_put()
454 unsigned char old, new; in stac9460_set_rate_val() local
467 old = stac9460_get(ice, STAC946X_MASTER_CLOCKING); in stac9460_set_rate_val()
468 if (old == new) in stac9460_set_rate_val()