diff options
author | Dan Williams <dan.j.williams@intel.com> | 2008-03-01 09:51:29 -0500 |
---|---|---|
committer | Dan Williams <dan.j.williams@intel.com> | 2008-03-04 12:16:46 -0500 |
commit | ec8670f1f795badedaa056a3a3245b9b82201747 (patch) | |
tree | dbca9b272bcf13d7d4a4b86cfabdc396f685f488 /include/linux | |
parent | 222ccf9ab838a1ca7163969fabd2cddc10403fb5 (diff) |
dmaengine: fix sparse warning
include/linux/dmaengine.h:364:2: warning: returning void-valued expression
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/dmaengine.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/dmaengine.h b/include/linux/dmaengine.h index acbb364674ff..261e43a4c873 100644 --- a/include/linux/dmaengine.h +++ b/include/linux/dmaengine.h | |||
@@ -366,7 +366,7 @@ __dma_has_cap(enum dma_transaction_type tx_type, dma_cap_mask_t *srcp) | |||
366 | */ | 366 | */ |
367 | static inline void dma_async_issue_pending(struct dma_chan *chan) | 367 | static inline void dma_async_issue_pending(struct dma_chan *chan) |
368 | { | 368 | { |
369 | return chan->device->device_issue_pending(chan); | 369 | chan->device->device_issue_pending(chan); |
370 | } | 370 | } |
371 | 371 | ||
372 | #define dma_async_memcpy_issue_pending(chan) dma_async_issue_pending(chan) | 372 | #define dma_async_memcpy_issue_pending(chan) dma_async_issue_pending(chan) |