Lines Matching refs:xfer
48 struct spi_transfer xfer[2]; in cyttsp_spi_xfer() local
70 memset(xfer, 0, sizeof(xfer)); in cyttsp_spi_xfer()
77 xfer[0].tx_buf = wr_buf; in cyttsp_spi_xfer()
78 xfer[0].rx_buf = rd_buf; in cyttsp_spi_xfer()
81 xfer[0].len = length + CY_SPI_CMD_BYTES; in cyttsp_spi_xfer()
82 spi_message_add_tail(&xfer[0], &msg); in cyttsp_spi_xfer()
86 xfer[0].len = CY_SPI_CMD_BYTES; in cyttsp_spi_xfer()
87 spi_message_add_tail(&xfer[0], &msg); in cyttsp_spi_xfer()
89 xfer[1].rx_buf = buf; in cyttsp_spi_xfer()
90 xfer[1].len = length; in cyttsp_spi_xfer()
91 spi_message_add_tail(&xfer[1], &msg); in cyttsp_spi_xfer()
102 __func__, retval, xfer[1].len, op); in cyttsp_spi_xfer()