Lines Matching refs:xmit
139 u32 xmit; in bttv_i2c_sendbytes() local
147 xmit = (msg->addr << 25) | (msg->buf[0] << 16) | I2C_HW; in bttv_i2c_sendbytes()
149 xmit |= BT878_I2C_NOSTOP; in bttv_i2c_sendbytes()
150 btwrite(xmit, BT848_I2C); in bttv_i2c_sendbytes()
162 xmit = (msg->buf[cnt] << 24) | I2C_HW | BT878_I2C_NOSTART; in bttv_i2c_sendbytes()
164 xmit |= BT878_I2C_NOSTOP; in bttv_i2c_sendbytes()
165 btwrite(xmit, BT848_I2C); in bttv_i2c_sendbytes()
174 if (i2c_debug && !(xmit & BT878_I2C_NOSTOP)) in bttv_i2c_sendbytes()
189 u32 xmit; in bttv_i2c_readbytes() local
194 xmit = (msg->addr << 25) | (1 << 24) | I2C_HW; in bttv_i2c_readbytes()
196 xmit |= BT848_I2C_W3B; in bttv_i2c_readbytes()
198 xmit |= BT878_I2C_NOSTOP; in bttv_i2c_readbytes()
200 xmit |= BT878_I2C_NOSTART; in bttv_i2c_readbytes()
203 if (!(xmit & BT878_I2C_NOSTART)) in bttv_i2c_readbytes()
207 btwrite(xmit, BT848_I2C); in bttv_i2c_readbytes()
217 if (i2c_debug && !(xmit & BT878_I2C_NOSTOP)) in bttv_i2c_readbytes()