aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/dma/ioat/dma.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/dma/ioat/dma.h')
-rw-r--r--drivers/dma/ioat/dma.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/dma/ioat/dma.h b/drivers/dma/ioat/dma.h
index d9d6a7e3cd76..8966fa5453a7 100644
--- a/drivers/dma/ioat/dma.h
+++ b/drivers/dma/ioat/dma.h
@@ -157,7 +157,7 @@ ioat_is_complete(struct dma_chan *c, dma_cookie_t cookie,
157 * struct ioat_desc_sw - wrapper around hardware descriptor 157 * struct ioat_desc_sw - wrapper around hardware descriptor
158 * @hw: hardware DMA descriptor 158 * @hw: hardware DMA descriptor
159 * @node: this descriptor will either be on the free list, 159 * @node: this descriptor will either be on the free list,
160 * or attached to a transaction list (async_tx.tx_list) 160 * or attached to a transaction list (tx_list)
161 * @txd: the generic software descriptor for all engines 161 * @txd: the generic software descriptor for all engines
162 * @id: identifier for debug 162 * @id: identifier for debug
163 */ 163 */
@@ -165,6 +165,7 @@ struct ioat_desc_sw {
165 struct ioat_dma_descriptor *hw; 165 struct ioat_dma_descriptor *hw;
166 struct list_head node; 166 struct list_head node;
167 size_t len; 167 size_t len;
168 struct list_head tx_list;
168 struct dma_async_tx_descriptor txd; 169 struct dma_async_tx_descriptor txd;
169 #ifdef DEBUG 170 #ifdef DEBUG
170 int id; 171 int id;