diff options
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/async_tx.h | 2 | ||||
-rw-r--r-- | include/linux/dmaengine.h | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/include/linux/async_tx.h b/include/linux/async_tx.h index 5fc2ef8d97fa..513150d8c25b 100644 --- a/include/linux/async_tx.h +++ b/include/linux/async_tx.h | |||
@@ -117,7 +117,7 @@ async_xor(struct page *dest, struct page **src_list, unsigned int offset, | |||
117 | dma_async_tx_callback cb_fn, void *cb_fn_param); | 117 | dma_async_tx_callback cb_fn, void *cb_fn_param); |
118 | 118 | ||
119 | struct dma_async_tx_descriptor * | 119 | struct dma_async_tx_descriptor * |
120 | async_xor_zero_sum(struct page *dest, struct page **src_list, | 120 | async_xor_val(struct page *dest, struct page **src_list, |
121 | unsigned int offset, int src_cnt, size_t len, | 121 | unsigned int offset, int src_cnt, size_t len, |
122 | u32 *result, enum async_tx_flags flags, | 122 | u32 *result, enum async_tx_flags flags, |
123 | struct dma_async_tx_descriptor *depend_tx, | 123 | struct dma_async_tx_descriptor *depend_tx, |
diff --git a/include/linux/dmaengine.h b/include/linux/dmaengine.h index 2e2aa3df170c..6768727d00d7 100644 --- a/include/linux/dmaengine.h +++ b/include/linux/dmaengine.h | |||
@@ -55,8 +55,8 @@ enum dma_transaction_type { | |||
55 | DMA_PQ_XOR, | 55 | DMA_PQ_XOR, |
56 | DMA_DUAL_XOR, | 56 | DMA_DUAL_XOR, |
57 | DMA_PQ_UPDATE, | 57 | DMA_PQ_UPDATE, |
58 | DMA_ZERO_SUM, | 58 | DMA_XOR_VAL, |
59 | DMA_PQ_ZERO_SUM, | 59 | DMA_PQ_VAL, |
60 | DMA_MEMSET, | 60 | DMA_MEMSET, |
61 | DMA_MEMCPY_CRC32C, | 61 | DMA_MEMCPY_CRC32C, |
62 | DMA_INTERRUPT, | 62 | DMA_INTERRUPT, |
@@ -214,7 +214,7 @@ struct dma_async_tx_descriptor { | |||
214 | * @device_free_chan_resources: release DMA channel's resources | 214 | * @device_free_chan_resources: release DMA channel's resources |
215 | * @device_prep_dma_memcpy: prepares a memcpy operation | 215 | * @device_prep_dma_memcpy: prepares a memcpy operation |
216 | * @device_prep_dma_xor: prepares a xor operation | 216 | * @device_prep_dma_xor: prepares a xor operation |
217 | * @device_prep_dma_zero_sum: prepares a zero_sum operation | 217 | * @device_prep_dma_xor_val: prepares a xor validation operation |
218 | * @device_prep_dma_memset: prepares a memset operation | 218 | * @device_prep_dma_memset: prepares a memset operation |
219 | * @device_prep_dma_interrupt: prepares an end of chain interrupt operation | 219 | * @device_prep_dma_interrupt: prepares an end of chain interrupt operation |
220 | * @device_prep_slave_sg: prepares a slave dma operation | 220 | * @device_prep_slave_sg: prepares a slave dma operation |
@@ -243,7 +243,7 @@ struct dma_device { | |||
243 | struct dma_async_tx_descriptor *(*device_prep_dma_xor)( | 243 | struct dma_async_tx_descriptor *(*device_prep_dma_xor)( |
244 | struct dma_chan *chan, dma_addr_t dest, dma_addr_t *src, | 244 | struct dma_chan *chan, dma_addr_t dest, dma_addr_t *src, |
245 | unsigned int src_cnt, size_t len, unsigned long flags); | 245 | unsigned int src_cnt, size_t len, unsigned long flags); |
246 | struct dma_async_tx_descriptor *(*device_prep_dma_zero_sum)( | 246 | struct dma_async_tx_descriptor *(*device_prep_dma_xor_val)( |
247 | struct dma_chan *chan, dma_addr_t *src, unsigned int src_cnt, | 247 | struct dma_chan *chan, dma_addr_t *src, unsigned int src_cnt, |
248 | size_t len, u32 *result, unsigned long flags); | 248 | size_t len, u32 *result, unsigned long flags); |
249 | struct dma_async_tx_descriptor *(*device_prep_dma_memset)( | 249 | struct dma_async_tx_descriptor *(*device_prep_dma_memset)( |