Lines Matching defs:new
81 unsigned char new, old;
84 new = (~mute << 7 & 0x80) | (old & ~0x80);
85 change = (new != old);
87 /* dev_dbg(ice->card->dev, "Volume register 0x%02x: 0x%02x\n", idx, new);*/
88 stac9460_put(ice, idx, new);
206 unsigned char new, old;
213 new = (~ucontrol->value.integer.value[i]<<7&0x80) | (old&~0x80);
214 change = (new != old);
216 stac9460_put(ice, reg, new);
292 unsigned char new, old;
295 new = (ucontrol->value.enumerated.item[0] << 7 & 0x80) | (old & ~0x80);
296 change = (new != old);
298 stac9460_put(ice, STAC946X_GENERAL_PURPOSE, new);
306 unsigned char old, new;
314 new = 0x08; /* 256x, base rate mode */
316 new = 0x11; /* 256x, mid rate mode */
318 new = 0x12; /* 128x, high rate mode */
320 if (old == new)
329 /*dev_dbg(ice->card->dev, "Rate change: %d, new MC: 0x%02x\n", rate, new);*/
330 stac9460_put(ice, STAC946X_MASTER_CLOCKING, new);
566 unsigned char new, old, itemvalue;
573 new = (itemvalue & AK4114_IPS0) | (old & ~AK4114_IPS0);
574 change = (new != old);
576 prodigy192_ak4114_write(ice, AK4114_REG_IO1, new);