Lines Matching refs:xfer
41 struct spi_transfer xfer[2]; in cyttsp_spi_xfer() local
63 memset(xfer, 0, sizeof(xfer)); in cyttsp_spi_xfer()
70 xfer[0].tx_buf = wr_buf; in cyttsp_spi_xfer()
71 xfer[0].rx_buf = rd_buf; in cyttsp_spi_xfer()
74 xfer[0].len = length + CY_SPI_CMD_BYTES; in cyttsp_spi_xfer()
75 spi_message_add_tail(&xfer[0], &msg); in cyttsp_spi_xfer()
79 xfer[0].len = CY_SPI_RD_HEADER_BYTES; in cyttsp_spi_xfer()
80 spi_message_add_tail(&xfer[0], &msg); in cyttsp_spi_xfer()
82 xfer[1].rx_buf = buf; in cyttsp_spi_xfer()
83 xfer[1].len = length; in cyttsp_spi_xfer()
84 spi_message_add_tail(&xfer[1], &msg); in cyttsp_spi_xfer()
95 __func__, retval, xfer[1].len, op); in cyttsp_spi_xfer()