Lines Matching defs:byte
171 /* Send command with one byte of data */
233 u8 *byte)
239 *byte = dev->ibuffer[0];
246 static int diolan_i2c_put_byte_ack(struct i2c_diolan_u2c *dev, u8 byte)
248 return diolan_usb_cmd_data(dev, CMD_I2C_PUT_BYTE_ACK, byte, false);
364 u8 byte;
368 * Don't send NACK if this is the first byte
374 ret = diolan_i2c_get_byte_ack(dev, ack, &byte);
378 * Adjust count if first received byte is length
381 if (byte == 0
382 || byte > I2C_SMBUS_BLOCK_MAX) {
386 pmsg->len += byte;
388 pmsg->buf[j] = byte;