diff options
author | Dan Williams <dan.j.williams@intel.com> | 2010-03-26 19:52:10 -0400 |
---|---|---|
committer | Dan Williams <dan.j.williams@intel.com> | 2010-03-26 19:52:10 -0400 |
commit | bca3469205402d9fb14060d255d8786ae2256640 (patch) | |
tree | 3b0c7f246fb9a6eafd3a82dd621dd9753589b3f4 /drivers/dma/ioat/dma.h | |
parent | 0793448187643b50af89d36b08470baf45a3cab4 (diff) |
dmaengine: provide helper for setting txstate
Simple conditional struct filler to cut out some duplicated code.
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Diffstat (limited to 'drivers/dma/ioat/dma.h')
-rw-r--r-- | drivers/dma/ioat/dma.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/drivers/dma/ioat/dma.h b/drivers/dma/ioat/dma.h index 23399672239e..26f48ef94c5c 100644 --- a/drivers/dma/ioat/dma.h +++ b/drivers/dma/ioat/dma.h | |||
@@ -158,11 +158,7 @@ ioat_tx_status(struct dma_chan *c, dma_cookie_t cookie, | |||
158 | last_used = c->cookie; | 158 | last_used = c->cookie; |
159 | last_complete = chan->completed_cookie; | 159 | last_complete = chan->completed_cookie; |
160 | 160 | ||
161 | if (txstate) { | 161 | dma_set_tx_state(txstate, last_complete, last_used, 0); |
162 | txstate->last = last_complete; | ||
163 | txstate->used = last_used; | ||
164 | txstate->residue = 0; | ||
165 | } | ||
166 | 162 | ||
167 | return dma_async_is_complete(cookie, last_complete, last_used); | 163 | return dma_async_is_complete(cookie, last_complete, last_used); |
168 | } | 164 | } |