Lines Matching refs:tmp

139 	u8 tmp;  in tas_set_treble()  local
141 tmp = tas3004_treble(tas->treble); in tas_set_treble()
142 tas_write_reg(tas, TAS_REG_TREBLE, 1, &tmp); in tas_set_treble()
147 u8 tmp; in tas_set_bass() local
149 tmp = tas3004_bass(tas->bass); in tas_set_bass()
150 tas_write_reg(tas, TAS_REG_BASS, 1, &tmp); in tas_set_bass()
156 int tmp; in tas_set_volume() local
174 tmp = tas_gaintable[left]; in tas_set_volume()
175 block[0] = tmp>>20; in tas_set_volume()
176 block[1] = tmp>>12; in tas_set_volume()
177 block[2] = tmp>>4; in tas_set_volume()
178 tmp = tas_gaintable[right]; in tas_set_volume()
179 block[3] = tmp>>20; in tas_set_volume()
180 block[4] = tmp>>12; in tas_set_volume()
181 block[5] = tmp>>4; in tas_set_volume()
188 int tmp, i; in tas_set_mixer() local
194 tmp = tas_gaintable[val]; in tas_set_mixer()
195 block[3*i+0] = tmp>>16; in tas_set_mixer()
196 block[3*i+1] = tmp>>8; in tas_set_mixer()
197 block[3*i+2] = tmp; in tas_set_mixer()
204 tmp = tas_gaintable[val]; in tas_set_mixer()
205 block[3*i+0] = tmp>>16; in tas_set_mixer()
206 block[3*i+1] = tmp>>8; in tas_set_mixer()
207 block[3*i+2] = tmp; in tas_set_mixer()
672 u8 tmp; in tas_reset_init() local
684 tmp = TAS_MCS_SCLK64 | TAS_MCS_SPORT_MODE_I2S | TAS_MCS_SPORT_WL_24BIT; in tas_reset_init()
685 if (tas_write_reg(tas, TAS_REG_MCS, 1, &tmp)) in tas_reset_init()
692 tmp = 0; in tas_reset_init()
693 if (tas_write_reg(tas, TAS_REG_MCS2, 1, &tmp)) in tas_reset_init()
917 u8 tmp = TAS_ACR_ANALOG_PDOWN; in tas_i2c_remove() local
923 tas_write_reg(tas, TAS_REG_ACR, 1, &tmp); in tas_i2c_remove()