Lines Matching refs:xmit
141 u32 xmit; in bttv_i2c_sendbytes() local
149 xmit = (msg->addr << 25) | (msg->buf[0] << 16) | I2C_HW; in bttv_i2c_sendbytes()
151 xmit |= BT878_I2C_NOSTOP; in bttv_i2c_sendbytes()
152 btwrite(xmit, BT848_I2C); in bttv_i2c_sendbytes()
164 xmit = (msg->buf[cnt] << 24) | I2C_HW | BT878_I2C_NOSTART; in bttv_i2c_sendbytes()
166 xmit |= BT878_I2C_NOSTOP; in bttv_i2c_sendbytes()
167 btwrite(xmit, BT848_I2C); in bttv_i2c_sendbytes()
176 if (i2c_debug && !(xmit & BT878_I2C_NOSTOP)) in bttv_i2c_sendbytes()
191 u32 xmit; in bttv_i2c_readbytes() local
196 xmit = (msg->addr << 25) | (1 << 24) | I2C_HW; in bttv_i2c_readbytes()
198 xmit |= BT848_I2C_W3B; in bttv_i2c_readbytes()
200 xmit |= BT878_I2C_NOSTOP; in bttv_i2c_readbytes()
202 xmit |= BT878_I2C_NOSTART; in bttv_i2c_readbytes()
205 if (!(xmit & BT878_I2C_NOSTART)) in bttv_i2c_readbytes()
209 btwrite(xmit, BT848_I2C); in bttv_i2c_readbytes()
219 if (i2c_debug && !(xmit & BT878_I2C_NOSTOP)) in bttv_i2c_readbytes()