Lines Matching defs:byte
130 * read a byte value from the data gpios.
151 * set the data gpios accordingly to the byte value.
153 static void ts_nbus_write_byte(struct ts_nbus *ts_nbus, u8 byte)
158 values[0] = byte;
199 u8 byte;
216 byte = 0;
218 /* read a byte from the bus, leave on error */
219 ret = ts_nbus_read_bus(ts_nbus, &byte);
223 /* append the byte read to the final value */
224 *val |= byte << (i * 8);