Home
last modified time | relevance | path

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

/linux-4.1.27/drivers/staging/mt29f_spinand/
Dmt29f_spinand.c104 if (cmd->n_rx) { in spinand_cmd()
105 x[3].len = cmd->n_rx; in spinand_cmd()
125 cmd.n_rx = 3; in spinand_read_id()
156 cmd.n_rx = 1; in spinand_read_status()
204 cmd.n_rx = 1; in spinand_get_otp()
337 cmd.n_rx = len; in spinand_read_from_cache()
Dmt29f_spinand.h100 u32 n_rx; /* Number of rx bytes */ member
/linux-4.1.27/drivers/spi/
Dspi-fsl-espi.c45 unsigned n_rx; member
434 unsigned int n_rx = 0; in fsl_espi_do_one_msg() local
442 n_rx += t->len; in fsl_espi_do_one_msg()
450 espi_trans.n_rx = n_rx; in fsl_espi_do_one_msg()
Dspi.c2233 void *rxbuf, unsigned n_rx) in spi_write_then_read() argument
2247 if ((n_tx + n_rx) > SPI_BUFSIZ || !mutex_trylock(&lock)) { in spi_write_then_read()
2248 local_buf = kmalloc(max((unsigned)SPI_BUFSIZ, n_tx + n_rx), in spi_write_then_read()
2262 if (n_rx) { in spi_write_then_read()
2263 x[1].len = n_rx; in spi_write_then_read()
2274 memcpy(rxbuf, x[1].rx_buf, n_rx); in spi_write_then_read()
/linux-4.1.27/include/linux/spi/
Dspi.h850 void *rxbuf, unsigned n_rx);