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/coh901318.c | |
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/coh901318.c')
-rw-r--r-- | drivers/dma/coh901318.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/drivers/dma/coh901318.c b/drivers/dma/coh901318.c index 309db3beef16..4233440741a2 100644 --- a/drivers/dma/coh901318.c +++ b/drivers/dma/coh901318.c | |||
@@ -1147,12 +1147,8 @@ coh901318_tx_status(struct dma_chan *chan, dma_cookie_t cookie, | |||
1147 | 1147 | ||
1148 | ret = dma_async_is_complete(cookie, last_complete, last_used); | 1148 | ret = dma_async_is_complete(cookie, last_complete, last_used); |
1149 | 1149 | ||
1150 | if (txstate) { | 1150 | dma_set_tx_state(txstate, last_complete, last_used, |
1151 | txstate->last = last_complete; | 1151 | coh901318_get_bytes_left(chan)); |
1152 | txstate->used = last_used; | ||
1153 | txstate->residue = coh901318_get_bytes_left(chan); | ||
1154 | } | ||
1155 | |||
1156 | if (ret == DMA_IN_PROGRESS && cohc->stopped) | 1152 | if (ret == DMA_IN_PROGRESS && cohc->stopped) |
1157 | ret = DMA_PAUSED; | 1153 | ret = DMA_PAUSED; |
1158 | 1154 | ||