Searched refs:op_len (Results 1 – 4 of 4) sorted by relevance
/u-boot/drivers/spi/ |
A D | spi-mem-nodm.c | 18 int op_len; in spi_mem_exec_op() local 30 op_len = sizeof(op->cmd.opcode) + op->addr.nbytes + op->dummy.nbytes; in spi_mem_exec_op() 31 op_buf = calloc(1, op_len); in spi_mem_exec_op() 56 ret = spi_xfer(slave, op_len * 8, op_buf, NULL, flag); in spi_mem_exec_op()
|
A D | spi-sifive.c | 281 int op_len, i; in sifive_spi_exec_op() local 296 op_len = op->addr.nbytes + op->dummy.nbytes; in sifive_spi_exec_op() 297 u8 op_buf[op_len]; in sifive_spi_exec_op() 318 ret = sifive_spi_xfer(dev, op_len * 8, op_buf, NULL, flags); in sifive_spi_exec_op()
|
A D | spi-mem.c | 218 int op_len; in spi_mem_exec_op() local 353 op_len = sizeof(op->cmd.opcode) + op->addr.nbytes + op->dummy.nbytes; in spi_mem_exec_op() 364 u8 op_buf[op_len]; in spi_mem_exec_op() 385 ret = spi_xfer(slave, op_len * 8, op_buf, NULL, flag); in spi_mem_exec_op()
|
A D | designware_spi.c | 575 u8 op_len = sizeof(op->cmd.opcode) + op->addr.nbytes + op->dummy.nbytes; in dw_spi_exec_op() local 576 u8 op_buf[op_len]; in dw_spi_exec_op() 610 priv->tx_end = priv->tx + op_len; in dw_spi_exec_op()
|
Completed in 6 milliseconds