Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ec8670f1 authored by Dan Williams's avatar Dan Williams
Browse files

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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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)
{
	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)