Home
last modified time | relevance | path

Searched refs:n_buf (Results 1 – 5 of 5) sorted by relevance

/rk3399_rockchip-uboot/examples/standalone/
H A Drkspi.c292 size_t n_buf) in rockchip_spi_write_then_read() argument
297 if (n_buf == 0) in rockchip_spi_write_then_read()
304 } else if (n_buf != 0) { in rockchip_spi_write_then_read()
305 ret = rockchip_spi_xfer(bus, cs, n_buf * 8, txbuf, rxbuf, SPI_XFER_END); in rockchip_spi_write_then_read()
308 n_buf, ret); in rockchip_spi_write_then_read()
H A DREADME_rkspi.md112 const u8 *txbuf, u8 *rxbuf, size_t n_buf);
121 - n_buf: the transfer length in bytes
H A Drkspi.h136 const u8 *txbuf, u8 *rxbuf, size_t n_buf);
/rk3399_rockchip-uboot/drivers/spi/
H A Dspi-uclass.c136 size_t n_buf) in spi_write_then_read() argument
141 if (n_buf == 0) in spi_write_then_read()
148 } else if (n_buf != 0) { in spi_write_then_read()
149 ret = spi_xfer(slave, n_buf * 8, txbuf, rxbuf, SPI_XFER_END); in spi_write_then_read()
152 n_buf, ret); in spi_write_then_read()
/rk3399_rockchip-uboot/include/
H A Dspi.h292 size_t n_buf);