diff options
author | Mark Brown <broonie@linaro.org> | 2014-01-02 13:01:52 +0000 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-01-02 13:01:52 +0000 |
commit | 75aac8206006e70859930d356ccfe02543530c27 (patch) | |
tree | 3d7581b0dd992da0661a1eea81737d427ac81eb4 /include/linux/dmaengine.h | |
parent | 01ad154ea505aeda249a4db4140a276f3eae509b (diff) | |
parent | 2b67f8ba41ac7acf01c8d5c742c713ead8b589cd (diff) | |
download | linux-75aac8206006e70859930d356ccfe02543530c27.tar.gz linux-75aac8206006e70859930d356ccfe02543530c27.tar.bz2 linux-75aac8206006e70859930d356ccfe02543530c27.zip |
Merge remote-tracking branch 'asoc/topic/dma' into asoc-next
Diffstat (limited to 'include/linux/dmaengine.h')
-rw-r--r-- | include/linux/dmaengine.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/linux/dmaengine.h b/include/linux/dmaengine.h index 41cf0c399288..ed92b30a02fd 100644 --- a/include/linux/dmaengine.h +++ b/include/linux/dmaengine.h @@ -22,6 +22,7 @@ #define LINUX_DMAENGINE_H #include <linux/device.h> +#include <linux/err.h> #include <linux/uio.h> #include <linux/bug.h> #include <linux/scatterlist.h> @@ -1040,6 +1041,8 @@ enum dma_status dma_wait_for_async_tx(struct dma_async_tx_descriptor *tx); void dma_issue_pending_all(void); struct dma_chan *__dma_request_channel(const dma_cap_mask_t *mask, dma_filter_fn fn, void *fn_param); +struct dma_chan *dma_request_slave_channel_reason(struct device *dev, + const char *name); struct dma_chan *dma_request_slave_channel(struct device *dev, const char *name); void dma_release_channel(struct dma_chan *chan); #else @@ -1063,6 +1066,11 @@ static inline struct dma_chan *__dma_request_channel(const dma_cap_mask_t *mask, { return NULL; } +static inline struct dma_chan *dma_request_slave_channel_reason( + struct device *dev, const char *name) +{ + return ERR_PTR(-ENODEV); +} static inline struct dma_chan *dma_request_slave_channel(struct device *dev, const char *name) { |