diff options
author | Dan Williams <dan.j.williams@intel.com> | 2008-06-06 02:26:11 -0400 |
---|---|---|
committer | Dan Williams <dan.j.williams@intel.com> | 2008-07-08 14:57:55 -0400 |
commit | 65bc3ffe8c067e387fe5557bc3ea5071071f6af9 (patch) | |
tree | 71d7eb925b020a6e45d8d1a4047b961df34cff97 /crypto | |
parent | 51ee87f27a1d2c0e08492924f2fb0223c4c704d9 (diff) |
async_tx: fix async_memset compile error
commit 636bdeaa '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>
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/async_tx/async_memset.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/async_tx/async_memset.c b/crypto/async_tx/async_memset.c index f5ff3906b035..27a97dc90a7e 100644 --- a/crypto/async_tx/async_memset.c +++ b/crypto/async_tx/async_memset.c | |||
@@ -76,7 +76,7 @@ async_memset(struct page *dest, int val, unsigned int offset, | |||
76 | /* if ack is already set then we cannot be sure | 76 | /* if ack is already set then we cannot be sure |
77 | * we are referring to the correct operation | 77 | * we are referring to the correct operation |
78 | */ | 78 | */ |
79 | BUG_ON(depend_tx->ack); | 79 | BUG_ON(async_tx_test_ack(depend_tx)); |
80 | if (dma_wait_for_async_tx(depend_tx) == DMA_ERROR) | 80 | if (dma_wait_for_async_tx(depend_tx) == DMA_ERROR) |
81 | panic("%s: DMA_ERROR waiting for depend_tx\n", | 81 | panic("%s: DMA_ERROR waiting for depend_tx\n", |
82 | __func__); | 82 | __func__); |