|
@@ -615,6 +615,7 @@ atc_prep_dma_memcpy(struct dma_chan *chan, dma_addr_t dest, dma_addr_t src,
|
|
|
/* First descriptor of the chain embedds additional information */
|
|
|
first->txd.cookie = -EBUSY;
|
|
|
first->len = len;
|
|
|
+ first->tx_width = src_width;
|
|
|
|
|
|
/* set end-of-link to the last link descriptor of list*/
|
|
|
set_desc_eol(desc);
|
|
@@ -761,6 +762,7 @@ atc_prep_slave_sg(struct dma_chan *chan, struct scatterlist *sgl,
|
|
|
/* First descriptor of the chain embedds additional information */
|
|
|
first->txd.cookie = -EBUSY;
|
|
|
first->len = total_len;
|
|
|
+ first->tx_width = reg_width;
|
|
|
|
|
|
/* first link descriptor of list is responsible of flags */
|
|
|
first->txd.flags = flags; /* client is in control of this ack */
|
|
@@ -919,6 +921,7 @@ atc_prep_dma_cyclic(struct dma_chan *chan, dma_addr_t buf_addr, size_t buf_len,
|
|
|
/* First descriptor of the chain embedds additional information */
|
|
|
first->txd.cookie = -EBUSY;
|
|
|
first->len = buf_len;
|
|
|
+ first->tx_width = reg_width;
|
|
|
|
|
|
return &first->txd;
|
|
|
|