Lines Matching refs:tmp
59 unsigned char tmp = 0; in ewx_i2c_setlines() local
61 tmp |= ICE1712_EWX2496_SERIAL_CLOCK; in ewx_i2c_setlines()
63 tmp |= ICE1712_EWX2496_SERIAL_DATA; in ewx_i2c_setlines()
64 snd_ice1712_write(ice, ICE1712_IREG_GPIO_DATA, tmp); in ewx_i2c_setlines()
174 unsigned char tmp; in ews88mt_ak4524_lock() local
179 tmp = ICE1712_EWS88_SERIAL_DATA | in ews88mt_ak4524_lock()
183 ice->gpio.direction | tmp); in ews88mt_ak4524_lock()
184 snd_ice1712_write(ice, ICE1712_IREG_GPIO_WRITE_MASK, ~tmp); in ews88mt_ak4524_lock()
200 unsigned char tmp; in ewx2496_ak4524_lock() local
202 tmp = ICE1712_EWX2496_SERIAL_DATA | in ewx2496_ak4524_lock()
207 ice->gpio.direction | tmp); in ewx2496_ak4524_lock()
208 snd_ice1712_write(ice, ICE1712_IREG_GPIO_WRITE_MASK, ~tmp); in ewx2496_ak4524_lock()
216 unsigned char tmp; in dmx6fire_ak4524_lock() local
218 tmp = priv->cs_mask = priv->cs_addr = (1 << chip) & ICE1712_6FIRE_AK4524_CS_MASK; in dmx6fire_ak4524_lock()
219 tmp |= ICE1712_6FIRE_SERIAL_DATA | in dmx6fire_ak4524_lock()
223 ice->gpio.direction | tmp); in dmx6fire_ak4524_lock()
224 snd_ice1712_write(ice, ICE1712_IREG_GPIO_WRITE_MASK, ~tmp); in dmx6fire_ak4524_lock()
322 unsigned char tmp; in ews88_setup_spdif() local
326 tmp = ice->spdif.cs8403_stream_bits; in ews88_setup_spdif()
327 if (tmp & 0x10) /* consumer */ in ews88_setup_spdif()
328 tmp &= (tmp & 0x01) ? ~0x06 : ~0x60; in ews88_setup_spdif()
330 case 32000: tmp |= (tmp & 0x01) ? 0x02 : 0x00; break; in ews88_setup_spdif()
331 case 44100: tmp |= (tmp & 0x01) ? 0x06 : 0x40; break; in ews88_setup_spdif()
332 case 48000: tmp |= (tmp & 0x01) ? 0x04 : 0x20; break; in ews88_setup_spdif()
333 default: tmp |= (tmp & 0x01) ? 0x06 : 0x40; break; in ews88_setup_spdif()
335 change = ice->spdif.cs8403_stream_bits != tmp; in ews88_setup_spdif()
336 ice->spdif.cs8403_stream_bits = tmp; in ews88_setup_spdif()
340 snd_ice1712_ews_cs8404_spdif_write(ice, tmp); in ews88_setup_spdif()