Lines Matching refs:rx_buf
25 struct spi_buf rx_buf = { .buf = buf, .len = sizeof(buf) }; in oa_tc6_reg_read() local
26 const struct spi_buf_set rx = { .buffers = &rx_buf, .count = 1 }; in oa_tc6_reg_read()
36 rx_buf.len -= sizeof(rvn); in oa_tc6_reg_read()
83 struct spi_buf rx_buf = { .buf = buf_rx, .len = sizeof(buf_rx) }; in oa_tc6_reg_write() local
84 const struct spi_buf_set rx = { .buffers = &rx_buf, .count = 1 }; in oa_tc6_reg_write()
94 rx_buf.len -= sizeof(rvn); in oa_tc6_reg_write()
284 struct spi_buf rx_buf[2]; in oa_tc6_chunk_spi_transfer() local
299 rx_buf[0].buf = buf_rx; in oa_tc6_chunk_spi_transfer()
300 rx_buf[0].len = tc6->cps; in oa_tc6_chunk_spi_transfer()
302 rx_buf[1].buf = ftr; in oa_tc6_chunk_spi_transfer()
303 rx_buf[1].len = sizeof(*ftr); in oa_tc6_chunk_spi_transfer()
305 rx.buffers = rx_buf; in oa_tc6_chunk_spi_transfer()
306 rx.count = ARRAY_SIZE(rx_buf); in oa_tc6_chunk_spi_transfer()