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/at_hdmac.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/at_hdmac.c')
-rw-r--r-- | drivers/dma/at_hdmac.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/drivers/dma/at_hdmac.c b/drivers/dma/at_hdmac.c index ff75cf18d32e..93ed99c84cf1 100644 --- a/drivers/dma/at_hdmac.c +++ b/drivers/dma/at_hdmac.c | |||
@@ -834,12 +834,7 @@ atc_tx_status(struct dma_chan *chan, | |||
834 | 834 | ||
835 | spin_unlock_bh(&atchan->lock); | 835 | spin_unlock_bh(&atchan->lock); |
836 | 836 | ||
837 | if (txstate) { | 837 | dma_set_tx_state(txstate, last_complete, last_used, 0); |
838 | txstate->last = last_complete; | ||
839 | txstate->used = last_used; | ||
840 | txstate->residue = 0; | ||
841 | } | ||
842 | |||
843 | dev_vdbg(chan2dev(chan), "tx_status: %d (d%d, u%d)\n", | 838 | dev_vdbg(chan2dev(chan), "tx_status: %d (d%d, u%d)\n", |
844 | cookie, last_complete ? last_complete : 0, | 839 | cookie, last_complete ? last_complete : 0, |
845 | last_used ? last_used : 0); | 840 | last_used ? last_used : 0); |