Lines Matching defs:next
283 * Add the next byte of instruction to the 8-byte sequence register.
284 * Then decrement the counter so that the next instruction will go in
439 struct spi_transfer *next = NULL;
466 next = list_next_entry(transfer, transfer_list);
469 if (next->rx_buf) {
472 if (next->len > SPI_FSI_MAX_RX_SIZE) {
478 next->len);
480 shift = SPI_FSI_SEQUENCE_SHIFT_IN(next->len);
483 next = NULL;
497 if (next) {
498 rc = fsi_spi_transfer_data(ctx, next);
502 transfer = next;