dmaengine: add async_tx_clear_ack() macro
To complete the DMA_CTRL_ACK handling API add a async_tx_clear_ack() macro. Signed-off-by: Guennadi Liakhovetski <lg@denx.de> Signed-off-by: Dan Williams <dan.j.williams@intel.com>
This commit is contained in:
committed by
Dan Williams
parent
c50331e8be
commit
ef560682a9
@ -287,6 +287,11 @@ static inline void async_tx_ack(struct dma_async_tx_descriptor *tx)
|
|||||||
tx->flags |= DMA_CTRL_ACK;
|
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)
|
static inline bool async_tx_test_ack(struct dma_async_tx_descriptor *tx)
|
||||||
{
|
{
|
||||||
return (tx->flags & DMA_CTRL_ACK) == DMA_CTRL_ACK;
|
return (tx->flags & DMA_CTRL_ACK) == DMA_CTRL_ACK;
|
||||||
|
Reference in New Issue
Block a user