Lines Matching defs:byte
133 * read a byte value from the data gpios.
154 * set the data gpios accordingly to the byte value.
156 static void ts_nbus_write_byte(struct ts_nbus *ts_nbus, u8 byte)
161 values[0] = byte;
202 u8 byte;
219 byte = 0;
221 /* read a byte from the bus, leave on error */
222 ret = ts_nbus_read_bus(ts_nbus, &byte);
226 /* append the byte read to the final value */
227 *val |= byte << (i * 8);