diff options
Diffstat (limited to 'include/linux/dmaengine.h')
-rw-r--r-- | include/linux/dmaengine.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/dmaengine.h b/include/linux/dmaengine.h index 7ea9184eaa13..c47c68e535e8 100644 --- a/include/linux/dmaengine.h +++ b/include/linux/dmaengine.h | |||
@@ -645,6 +645,7 @@ enum dmaengine_alignment { | |||
645 | * The function takes a buffer of size buf_len. The callback function will | 645 | * The function takes a buffer of size buf_len. The callback function will |
646 | * be called after period_len bytes have been transferred. | 646 | * be called after period_len bytes have been transferred. |
647 | * @device_prep_interleaved_dma: Transfer expression in a generic way. | 647 | * @device_prep_interleaved_dma: Transfer expression in a generic way. |
648 | * @device_prep_dma_imm_data: DMA's 8 byte immediate data to the dst address | ||
648 | * @device_config: Pushes a new configuration to a channel, return 0 or an error | 649 | * @device_config: Pushes a new configuration to a channel, return 0 or an error |
649 | * code | 650 | * code |
650 | * @device_pause: Pauses any transfer happening on a channel. Returns | 651 | * @device_pause: Pauses any transfer happening on a channel. Returns |
@@ -727,6 +728,9 @@ struct dma_device { | |||
727 | struct dma_async_tx_descriptor *(*device_prep_interleaved_dma)( | 728 | struct dma_async_tx_descriptor *(*device_prep_interleaved_dma)( |
728 | struct dma_chan *chan, struct dma_interleaved_template *xt, | 729 | struct dma_chan *chan, struct dma_interleaved_template *xt, |
729 | unsigned long flags); | 730 | unsigned long flags); |
731 | struct dma_async_tx_descriptor *(*device_prep_dma_imm_data)( | ||
732 | struct dma_chan *chan, dma_addr_t dst, u64 data, | ||
733 | unsigned long flags); | ||
730 | 734 | ||
731 | int (*device_config)(struct dma_chan *chan, | 735 | int (*device_config)(struct dma_chan *chan, |
732 | struct dma_slave_config *config); | 736 | struct dma_slave_config *config); |