Lines Matching refs:xmit
127 u32 xmit; in bttv_i2c_sendbytes() local
135 xmit = (msg->addr << 25) | (msg->buf[0] << 16) | I2C_HW; in bttv_i2c_sendbytes()
137 xmit |= BT878_I2C_NOSTOP; in bttv_i2c_sendbytes()
138 btwrite(xmit, BT848_I2C); in bttv_i2c_sendbytes()
150 xmit = (msg->buf[cnt] << 24) | I2C_HW | BT878_I2C_NOSTART; in bttv_i2c_sendbytes()
152 xmit |= BT878_I2C_NOSTOP; in bttv_i2c_sendbytes()
153 btwrite(xmit, BT848_I2C); in bttv_i2c_sendbytes()
162 if (i2c_debug && !(xmit & BT878_I2C_NOSTOP)) in bttv_i2c_sendbytes()
177 u32 xmit; in bttv_i2c_readbytes() local
182 xmit = (msg->addr << 25) | (1 << 24) | I2C_HW; in bttv_i2c_readbytes()
184 xmit |= BT848_I2C_W3B; in bttv_i2c_readbytes()
186 xmit |= BT878_I2C_NOSTOP; in bttv_i2c_readbytes()
188 xmit |= BT878_I2C_NOSTART; in bttv_i2c_readbytes()
191 if (!(xmit & BT878_I2C_NOSTART)) in bttv_i2c_readbytes()
195 btwrite(xmit, BT848_I2C); in bttv_i2c_readbytes()
205 if (i2c_debug && !(xmit & BT878_I2C_NOSTOP)) in bttv_i2c_readbytes()