aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/dma/mpc512x_dma.c
diff options
context:
space:
mode:
authorDan Williams <dan.j.williams@intel.com>2010-03-26 19:52:10 -0400
committerDan Williams <dan.j.williams@intel.com>2010-03-26 19:52:10 -0400
commitbca3469205402d9fb14060d255d8786ae2256640 (patch)
tree3b0c7f246fb9a6eafd3a82dd621dd9753589b3f4 /drivers/dma/mpc512x_dma.c
parent0793448187643b50af89d36b08470baf45a3cab4 (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/mpc512x_dma.c')
-rw-r--r--drivers/dma/mpc512x_dma.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/drivers/dma/mpc512x_dma.c b/drivers/dma/mpc512x_dma.c
index cb3a8e94ea48..7a750b95303c 100644
--- a/drivers/dma/mpc512x_dma.c
+++ b/drivers/dma/mpc512x_dma.c
@@ -553,12 +553,7 @@ mpc_dma_tx_status(struct dma_chan *chan, dma_cookie_t cookie,
553 last_complete = mchan->completed_cookie; 553 last_complete = mchan->completed_cookie;
554 spin_unlock_irqrestore(&mchan->lock, flags); 554 spin_unlock_irqrestore(&mchan->lock, flags);
555 555
556 if (txstate) { 556 dma_set_tx_state(txstate, last_complete, last_used, 0);
557 txstate->last = last_complete;
558 txstate->used = last_used;
559 txstate->residue = 0;
560 }
561
562 return dma_async_is_complete(cookie, last_complete, last_used); 557 return dma_async_is_complete(cookie, last_complete, last_used);
563} 558}
564 559