• Home
  • Raw
  • Download

Lines Matching refs:old

67 	unsigned char new, old;  in stac9460_dac_mute_all()  local
77 old = stac9460_get(ice, idx); in stac9460_dac_mute_all()
78 new = (~mute << 7 & 0x80) | (old & ~0x80); in stac9460_dac_mute_all()
79 change = (new != old); in stac9460_dac_mute_all()
96 old = stac9460_2_get(ice, idx); in stac9460_dac_mute_all()
97 new = (~mute << 7 & 0x80) | (old & ~0x80); in stac9460_dac_mute_all()
98 change = (new != old); in stac9460_dac_mute_all()
144 unsigned char new, old; in stac9460_dac_mute_put() local
150 old = stac9460_get(ice, idx); in stac9460_dac_mute_put()
152 (old & ~0x80); in stac9460_dac_mute_put()
153 change = (new != old); in stac9460_dac_mute_put()
162 old = stac9460_get(ice, idx); in stac9460_dac_mute_put()
164 old = stac9460_2_get(ice, idx - 6); in stac9460_dac_mute_put()
166 (old & ~0x80); in stac9460_dac_mute_put()
167 change = (new != old); in stac9460_dac_mute_put()
284 unsigned char new, old; in stac9460_adc_mute_put() local
292 old = stac9460_get(ice, reg); in stac9460_adc_mute_put()
294 (old&~0x80); in stac9460_adc_mute_put()
295 change = (new != old); in stac9460_adc_mute_put()
302 old = stac9460_2_get(ice, reg); in stac9460_adc_mute_put()
304 (old&~0x80); in stac9460_adc_mute_put()
305 change = (new != old); in stac9460_adc_mute_put()
415 unsigned char new, old; in stac9460_mic_sw_put() local
420 old = stac9460_get(ice, STAC946X_GENERAL_PURPOSE); in stac9460_mic_sw_put()
422 old = stac9460_2_get(ice, STAC946X_GENERAL_PURPOSE); in stac9460_mic_sw_put()
423 new = (ucontrol->value.enumerated.item[0] << 7 & 0x80) | (old & ~0x80); in stac9460_mic_sw_put()
424 change = (new != old); in stac9460_mic_sw_put()
440 unsigned char old, new; in stac9460_set_rate_val() local
453 old = stac9460_get(ice, STAC946X_MASTER_CLOCKING); in stac9460_set_rate_val()
454 if (old == new) in stac9460_set_rate_val()