Commit ec8670f1 authored by Dan Williams's avatar Dan Williams

dmaengine: fix sparse warning

include/linux/dmaengine.h:364:2: warning: returning void-valued expression
Signed-off-by: default avatarDan Williams <dan.j.williams@intel.com>
parent 222ccf9a
...@@ -366,7 +366,7 @@ __dma_has_cap(enum dma_transaction_type tx_type, dma_cap_mask_t *srcp) ...@@ -366,7 +366,7 @@ __dma_has_cap(enum dma_transaction_type tx_type, dma_cap_mask_t *srcp)
*/ */
static inline void dma_async_issue_pending(struct dma_chan *chan) static inline void dma_async_issue_pending(struct dma_chan *chan)
{ {
return chan->device->device_issue_pending(chan); chan->device->device_issue_pending(chan);
} }
#define dma_async_memcpy_issue_pending(chan) dma_async_issue_pending(chan) #define dma_async_memcpy_issue_pending(chan) dma_async_issue_pending(chan)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment