diff options
author | Barry Song <[email protected]> | 2012-11-06 21:32:39 +0800 |
---|---|---|
committer | Vinod Koul <[email protected]> | 2013-01-07 22:05:04 -0800 |
commit | a14acb4ac2a1486f6633c55eb7f7ded07f3ec9fc (patch) | |
tree | 0bf3340707e8f1654b41f689bcb5db2933c9cfa9 | |
parent | f7d935dcc34fae9ad4a39f2cf8e2a96199c48948 (diff) |
DMAEngine: add dmaengine_prep_interleaved_dma wrapper for interleaved api
commit b14dab792dee(DMAEngine: Define interleaved transfer request api) adds
interleaved request api, this patch adds the dmaengine_prep_interleaved_dma
just like we have dmaengine_prep_ for other modes to avoid drivers call:
xxx_chan->device->device_prep_interleaved_dma().
Signed-off-by: Barry Song <[email protected]>
Cc: Jassi Brar <[email protected]>
Signed-off-by: Vinod Koul <[email protected]>
-rw-r--r-- | include/linux/dmaengine.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/linux/dmaengine.h b/include/linux/dmaengine.h index 4c8643794e0d..3aa76dbed166 100644 --- a/include/linux/dmaengine.h +++ b/include/linux/dmaengine.h @@ -660,6 +660,13 @@ static inline struct dma_async_tx_descriptor *dmaengine_prep_dma_cyclic( period_len, dir, flags, NULL); } +static inline struct dma_async_tx_descriptor *dmaengine_prep_interleaved_dma( + struct dma_chan *chan, struct dma_interleaved_template *xt, + unsigned long flags) +{ + return chan->device->device_prep_interleaved_dma(chan, xt, flags); +} + static inline int dmaengine_terminate_all(struct dma_chan *chan) { return dmaengine_device_control(chan, DMA_TERMINATE_ALL, 0); |