Lines Matching refs:xfer
38 struct spi_transfer xfer[2]; in cyttsp_spi_xfer() local
60 memset(xfer, 0, sizeof(xfer)); in cyttsp_spi_xfer()
67 xfer[0].tx_buf = wr_buf; in cyttsp_spi_xfer()
68 xfer[0].rx_buf = rd_buf; in cyttsp_spi_xfer()
71 xfer[0].len = length + CY_SPI_CMD_BYTES; in cyttsp_spi_xfer()
72 spi_message_add_tail(&xfer[0], &msg); in cyttsp_spi_xfer()
76 xfer[0].len = CY_SPI_CMD_BYTES; in cyttsp_spi_xfer()
77 spi_message_add_tail(&xfer[0], &msg); in cyttsp_spi_xfer()
79 xfer[1].rx_buf = buf; in cyttsp_spi_xfer()
80 xfer[1].len = length; in cyttsp_spi_xfer()
81 spi_message_add_tail(&xfer[1], &msg); in cyttsp_spi_xfer()
92 __func__, retval, xfer[1].len, op); in cyttsp_spi_xfer()