aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/dma
diff options
context:
space:
mode:
authorSteven J. Magnani <steve@digidescorp.com>2010-02-25 13:39:30 -0600
committerDan Williams <dan.j.williams@intel.com>2010-02-28 20:27:42 -0700
commit6ca3a7a96e91b1aa8c704153c992b191d35b5747 (patch)
tree4700e2eecbae9e33492df683d11e5366f16aeca2 /drivers/dma
parentdma: cases IPU_PIX_FMT_BGRA32, BGR32 and ABGR32 are the same in ipu_ch_param_set_size() (diff)
downloadlinux-dev-6ca3a7a96e91b1aa8c704153c992b191d35b5747.tar.xz
linux-dev-6ca3a7a96e91b1aa8c704153c992b191d35b5747.zip
fsldma: Fix cookie issues
fsl_dma_tx_submit() only sets the cookie on the first descriptor of a transaction. It should set the cookie on all. Signed-off-by: Steven J. Magnani <steve@digidescorp.com> Acked-by: Ira W. Snyder <iws@ovro.caltech.edu> Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Diffstat (limited to 'drivers/dma')
-rw-r--r--drivers/dma/fsldma.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma/fsldma.c b/drivers/dma/fsldma.c
index 92efa87258b9..6541ebf8bf63 100644
--- a/drivers/dma/fsldma.c
+++ b/drivers/dma/fsldma.c
@@ -362,7 +362,7 @@ static dma_cookie_t fsl_dma_tx_submit(struct dma_async_tx_descriptor *tx)
if (cookie < 0)
cookie = 1;
- desc->async_tx.cookie = cookie;
+ child->async_tx.cookie = cookie;
}
chan->common.cookie = cookie;