All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] dmaengine: Add wrapper for device_tx_status callback
@ 2012-06-11 12:04 ` Lars-Peter Clausen
  0 siblings, 0 replies; 15+ messages in thread
From: Lars-Peter Clausen @ 2012-06-11 12:04 UTC (permalink / raw)
  To: Mark Brown, Liam Girdwood, Vinod Koul
  Cc: alsa-devel, Lars-Peter Clausen, Russell King, linux-kernel

This patch adds a small inline wrapper for the devivce_tx_status callback of a
dma device. This makes the source code of users of this function a bit more
compact and a bit more legible.

E.g.:
-status = chan->device->device_tx_status(chan, cookie, &state)
+status = dmaengine_tx_status(chan, cookie, &state)

Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
---
 include/linux/dmaengine.h |    6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/include/linux/dmaengine.h b/include/linux/dmaengine.h
index 56bbc4d..1731628 100644
--- a/include/linux/dmaengine.h
+++ b/include/linux/dmaengine.h
@@ -650,6 +650,12 @@ static inline int dmaengine_resume(struct dma_chan *chan)
 	return dmaengine_device_control(chan, DMA_RESUME, 0);
 }
 
+static inline enum dma_status dmaengine_tx_status(struct dma_chan *chan,
+	dma_cookie_t cookie, struct dma_tx_state *state)
+{
+	return chan->device->device_tx_status(chan, cookie, state);
+}
+
 static inline dma_cookie_t dmaengine_submit(struct dma_async_tx_descriptor *desc)
 {
 	return desc->tx_submit(desc);
-- 
1.7.10

^ permalink raw reply related	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2012-06-11 15:36 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-11 12:04 [PATCH 1/2] dmaengine: Add wrapper for device_tx_status callback Lars-Peter Clausen
2012-06-11 12:04 ` Lars-Peter Clausen
2012-06-11 12:04 ` [PATCH 2/2] ASoC: dmaengine-pcm: Add support for querying stream position from DMA device Lars-Peter Clausen
2012-06-11 12:04   ` Lars-Peter Clausen
2012-06-11 13:24   ` Russell King - ARM Linux
2012-06-11 14:02     ` Lars-Peter Clausen
2012-06-11 14:09       ` Russell King - ARM Linux
2012-06-11 14:09         ` Russell King - ARM Linux
2012-06-11 14:30         ` Lars-Peter Clausen
2012-06-11 14:30           ` Lars-Peter Clausen
2012-06-11 14:57     ` Mark Brown
2012-06-11 14:57       ` Mark Brown
2012-06-11 15:20       ` [alsa-devel] " Lars-Peter Clausen
2012-06-11 15:35         ` Mark Brown
2012-06-11 15:35           ` [alsa-devel] " Mark Brown

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.