struct spi_replaced_transfers — structure describing the spi_transfer replacements that have occurred so that they can get reverted
struct spi_replaced_transfers { spi_replaced_release_t release; void * extradata; struct list_head replaced_transfers; struct list_head * replaced_after; size_t inserted; struct spi_transfer inserted_transfers[]; };
some extra release code to get executed prior to relasing this structure
pointer to some extra data if requested or NULL
transfers that have been replaced and which need to get restored
the transfer after which the replaced_transfers
are to get re-inserted
number of transfers inserted
array of spi_transfers of array-size inserted
,
that have been replacing replaced_transfers