Lines Matching refs:txbuf
95 u8 txbuf[3]; in _spi_read() local
101 txbuf[0] = RK806_CMD_READ; in _spi_read()
102 txbuf[1] = reg; in _spi_read()
103 txbuf[2] = RK806_REG_H; in _spi_read()
105 ret = spi_write_then_read(priv->slave, txbuf, 3, NULL, buffer, 1); in _spi_read()
114 u8 txbuf[4]; in _spi_write() local
125 txbuf[0] = RK806_CMD_WRITE; in _spi_write()
126 txbuf[1] = reg; in _spi_write()
127 txbuf[2] = RK806_REG_H; in _spi_write()
128 txbuf[3] = *buffer; in _spi_write()
130 ret = spi_write_then_read(priv->slave, txbuf, 4, NULL, NULL, 0); in _spi_write()