Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 130067
b: refs/heads/master
c: ef56068
h: refs/heads/master
i:
  130065: 23661f0
  130063: 6bd50a1
v: v3
  • Loading branch information
Guennadi Liakhovetski authored and Dan Williams committed Jan 19, 2009
1 parent 53773e2 commit 39c65fa
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: c50331e8be32eaba5e1949f98c70d50b891262db
refs/heads/master: ef560682a97491f62ef538931a4861b57d66c52c
5 changes: 5 additions & 0 deletions trunk/include/linux/dmaengine.h
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,11 @@ static inline void async_tx_ack(struct dma_async_tx_descriptor *tx)
tx->flags |= DMA_CTRL_ACK;
}

static inline void async_tx_clear_ack(struct dma_async_tx_descriptor *tx)
{
tx->flags &= ~DMA_CTRL_ACK;
}

static inline bool async_tx_test_ack(struct dma_async_tx_descriptor *tx)
{
return (tx->flags & DMA_CTRL_ACK) == DMA_CTRL_ACK;
Expand Down

0 comments on commit 39c65fa

Please sign in to comment.