Skip to content

Commit

Permalink
async_tx: fix async_memset compile error
Browse files Browse the repository at this point in the history
commit 636bdea 'dmaengine: ack to flags: make use of the unused bits in
the 'ack' field' missed an ->ack conversion in
crypto/async_tx/async_memset.c

Signed-off-by: Dan Williams <dan.j.williams@intel.com>
  • Loading branch information
Dan Williams committed Jul 8, 2008
1 parent 51ee87f commit 65bc3ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crypto/async_tx/async_memset.c
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ async_memset(struct page *dest, int val, unsigned int offset,
/* if ack is already set then we cannot be sure
* we are referring to the correct operation
*/
BUG_ON(depend_tx->ack);
BUG_ON(async_tx_test_ack(depend_tx));
if (dma_wait_for_async_tx(depend_tx) == DMA_ERROR)
panic("%s: DMA_ERROR waiting for depend_tx\n",
__func__);
Expand Down

0 comments on commit 65bc3ff

Please sign in to comment.