Lines Matching refs:old
81 unsigned char new, old; in stac9460_dac_mute() local
83 old = stac9460_get(ice, idx); in stac9460_dac_mute()
84 new = (~mute << 7 & 0x80) | (old & ~0x80); in stac9460_dac_mute()
85 change = (new != old); in stac9460_dac_mute()
206 unsigned char new, old; in stac9460_adc_mute_put() local
212 old = stac9460_get(ice, reg); in stac9460_adc_mute_put()
213 new = (~ucontrol->value.integer.value[i]<<7&0x80) | (old&~0x80); in stac9460_adc_mute_put()
214 change = (new != old); in stac9460_adc_mute_put()
292 unsigned char new, old; in stac9460_mic_sw_put() local
294 old = stac9460_get(ice, STAC946X_GENERAL_PURPOSE); in stac9460_mic_sw_put()
295 new = (ucontrol->value.enumerated.item[0] << 7 & 0x80) | (old & ~0x80); in stac9460_mic_sw_put()
296 change = (new != old); in stac9460_mic_sw_put()
306 unsigned char old, new; in stac9460_set_rate_val() local
319 old = stac9460_get(ice, STAC946X_MASTER_CLOCKING); in stac9460_set_rate_val()
320 if (old == new) in stac9460_set_rate_val()
566 unsigned char new, old, itemvalue; in ak4114_input_sw_put() local
569 old = prodigy192_ak4114_read(ice, AK4114_REG_IO1); in ak4114_input_sw_put()
573 new = (itemvalue & AK4114_IPS0) | (old & ~AK4114_IPS0); in ak4114_input_sw_put()
574 change = (new != old); in ak4114_input_sw_put()