Lines Matching refs:t
83 struct spi_transfer t[2] = {}; in m25p80_write() local
95 t[0].tx_buf = flash->command; in m25p80_write()
96 t[0].len = cmd_sz; in m25p80_write()
97 spi_message_add_tail(&t[0], &m); in m25p80_write()
99 t[1].tx_buf = buf; in m25p80_write()
100 t[1].len = len; in m25p80_write()
101 spi_message_add_tail(&t[1], &m); in m25p80_write()
129 struct spi_transfer t[2]; in m25p80_read() local
137 memset(t, 0, (sizeof t)); in m25p80_read()
142 t[0].tx_buf = flash->command; in m25p80_read()
143 t[0].len = m25p_cmdsz(nor) + dummy; in m25p80_read()
144 spi_message_add_tail(&t[0], &m); in m25p80_read()
146 t[1].rx_buf = buf; in m25p80_read()
147 t[1].rx_nbits = m25p80_rx_nbits(nor); in m25p80_read()
148 t[1].len = len; in m25p80_read()
149 spi_message_add_tail(&t[1], &m); in m25p80_read()