Lines Matching refs:old
99 unsigned char new, old; in stac9460_dac_mute_put() local
105 old = stac9460_get(ice, idx); in stac9460_dac_mute_put()
107 (old & ~0x80); in stac9460_dac_mute_put()
108 change = (new != old); in stac9460_dac_mute_put()
117 old = stac9460_get(ice, idx); in stac9460_dac_mute_put()
119 old = stac9460_2_get(ice, idx - 6); in stac9460_dac_mute_put()
121 (old & ~0x80); in stac9460_dac_mute_put()
122 change = (new != old); in stac9460_dac_mute_put()
239 unsigned char new, old; in stac9460_adc_mute_put() local
247 old = stac9460_get(ice, reg); in stac9460_adc_mute_put()
249 (old&~0x80); in stac9460_adc_mute_put()
250 change = (new != old); in stac9460_adc_mute_put()
257 old = stac9460_2_get(ice, reg); in stac9460_adc_mute_put()
259 (old&~0x80); in stac9460_adc_mute_put()
260 change = (new != old); in stac9460_adc_mute_put()
364 unsigned char new, old; in stac9460_mic_sw_put() local
369 old = stac9460_get(ice, STAC946X_GENERAL_PURPOSE); in stac9460_mic_sw_put()
371 old = stac9460_2_get(ice, STAC946X_GENERAL_PURPOSE); in stac9460_mic_sw_put()
372 new = (~ucontrol->value.integer.value[0] << 7 & 0x80) | (old & ~0x80); in stac9460_mic_sw_put()
373 change = (new != old); in stac9460_mic_sw_put()