Lines Matching refs:t
56 struct spi_transfer t[2]; in vsc73xx_spi_read() local
67 memset(&t, 0, sizeof(t)); in vsc73xx_spi_read()
69 t[0].tx_buf = cmd; in vsc73xx_spi_read()
70 t[0].len = sizeof(cmd); in vsc73xx_spi_read()
71 spi_message_add_tail(&t[0], &m); in vsc73xx_spi_read()
73 t[1].rx_buf = buf; in vsc73xx_spi_read()
74 t[1].len = sizeof(buf); in vsc73xx_spi_read()
75 spi_message_add_tail(&t[1], &m); in vsc73xx_spi_read()
98 struct spi_transfer t[2]; in vsc73xx_spi_write() local
109 memset(&t, 0, sizeof(t)); in vsc73xx_spi_write()
111 t[0].tx_buf = cmd; in vsc73xx_spi_write()
112 t[0].len = sizeof(cmd); in vsc73xx_spi_write()
113 spi_message_add_tail(&t[0], &m); in vsc73xx_spi_write()
115 t[1].tx_buf = buf; in vsc73xx_spi_write()
116 t[1].len = sizeof(buf); in vsc73xx_spi_write()
117 spi_message_add_tail(&t[1], &m); in vsc73xx_spi_write()