• Home
  • Raw
  • Download

Lines Matching refs:tmp

141 	u8 tmp;  in tas_set_treble()  local
143 tmp = tas3004_treble(tas->treble); in tas_set_treble()
144 tas_write_reg(tas, TAS_REG_TREBLE, 1, &tmp); in tas_set_treble()
149 u8 tmp; in tas_set_bass() local
151 tmp = tas3004_bass(tas->bass); in tas_set_bass()
152 tas_write_reg(tas, TAS_REG_BASS, 1, &tmp); in tas_set_bass()
158 int tmp; in tas_set_volume() local
176 tmp = tas_gaintable[left]; in tas_set_volume()
177 block[0] = tmp>>20; in tas_set_volume()
178 block[1] = tmp>>12; in tas_set_volume()
179 block[2] = tmp>>4; in tas_set_volume()
180 tmp = tas_gaintable[right]; in tas_set_volume()
181 block[3] = tmp>>20; in tas_set_volume()
182 block[4] = tmp>>12; in tas_set_volume()
183 block[5] = tmp>>4; in tas_set_volume()
190 int tmp, i; in tas_set_mixer() local
196 tmp = tas_gaintable[val]; in tas_set_mixer()
197 block[3*i+0] = tmp>>16; in tas_set_mixer()
198 block[3*i+1] = tmp>>8; in tas_set_mixer()
199 block[3*i+2] = tmp; in tas_set_mixer()
206 tmp = tas_gaintable[val]; in tas_set_mixer()
207 block[3*i+0] = tmp>>16; in tas_set_mixer()
208 block[3*i+1] = tmp>>8; in tas_set_mixer()
209 block[3*i+2] = tmp; in tas_set_mixer()
680 u8 tmp; in tas_reset_init() local
692 tmp = TAS_MCS_SCLK64 | TAS_MCS_SPORT_MODE_I2S | TAS_MCS_SPORT_WL_24BIT; in tas_reset_init()
693 if (tas_write_reg(tas, TAS_REG_MCS, 1, &tmp)) in tas_reset_init()
700 tmp = 0; in tas_reset_init()
701 if (tas_write_reg(tas, TAS_REG_MCS2, 1, &tmp)) in tas_reset_init()
926 u8 tmp = TAS_ACR_ANALOG_PDOWN; in tas_i2c_remove() local
932 tas_write_reg(tas, TAS_REG_ACR, 1, &tmp); in tas_i2c_remove()