Lines Matching refs:old
95 unsigned char new, old; in stac9460_dac_mute() local
97 old = stac9460_get(ice, idx); in stac9460_dac_mute()
98 new = (~mute << 7 & 0x80) | (old & ~0x80); in stac9460_dac_mute()
99 change = (new != old); in stac9460_dac_mute()
220 unsigned char new, old; in stac9460_adc_mute_put() local
226 old = stac9460_get(ice, reg); in stac9460_adc_mute_put()
227 new = (~ucontrol->value.integer.value[i]<<7&0x80) | (old&~0x80); in stac9460_adc_mute_put()
228 change = (new != old); in stac9460_adc_mute_put()
306 unsigned char new, old; in stac9460_mic_sw_put() local
308 old = stac9460_get(ice, STAC946X_GENERAL_PURPOSE); in stac9460_mic_sw_put()
309 new = (ucontrol->value.enumerated.item[0] << 7 & 0x80) | (old & ~0x80); in stac9460_mic_sw_put()
310 change = (new != old); in stac9460_mic_sw_put()
320 unsigned char old, new; in stac9460_set_rate_val() local
333 old = stac9460_get(ice, STAC946X_MASTER_CLOCKING); in stac9460_set_rate_val()
334 if (old == new) in stac9460_set_rate_val()
580 unsigned char new, old, itemvalue; in ak4114_input_sw_put() local
583 old = prodigy192_ak4114_read(ice, AK4114_REG_IO1); in ak4114_input_sw_put()
587 new = (itemvalue & AK4114_IPS0) | (old & ~AK4114_IPS0); in ak4114_input_sw_put()
588 change = (new != old); in ak4114_input_sw_put()