Lines Matching defs:byte
23 * nand_read_byte - [DEFAULT] read one byte from the chip
34 * nand_read_byte16 - [DEFAULT] read one byte endianness aware from the chip
68 * nand_write_byte - [DEFAULT] write single byte to chip
70 * @byte: value to write
72 * Default function to write a byte to I/O[7:0]
74 static void nand_write_byte(struct nand_chip *chip, uint8_t byte)
76 chip->legacy.write_buf(chip, &byte, 1);
80 * nand_write_byte16 - [DEFAULT] write single byte to a chip with width 16
82 * @byte: value to write
84 * Default function to write a byte to I/O[7:0] on a 16-bit wide chip.
86 static void nand_write_byte16(struct nand_chip *chip, uint8_t byte)
88 uint16_t word = byte;
92 * a byte. The ONFi spec (Revision 3.1; 2012-09-19, Section 2.16) reads: