aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/dma
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/dma')
-rw-r--r--drivers/dma/ioat/dma.c2
-rw-r--r--drivers/dma/ioat/dma.h2
2 files changed, 0 insertions, 4 deletions
diff --git a/drivers/dma/ioat/dma.c b/drivers/dma/ioat/dma.c
index 64b4d75059a..696d4de3bb8 100644
--- a/drivers/dma/ioat/dma.c
+++ b/drivers/dma/ioat/dma.c
@@ -648,8 +648,6 @@ ioat1_dma_prep_memcpy(struct dma_chan *c, dma_addr_t dma_dest,
648 648
649 desc->txd.flags = flags; 649 desc->txd.flags = flags;
650 desc->tx_cnt = tx_cnt; 650 desc->tx_cnt = tx_cnt;
651 desc->src = dma_src;
652 desc->dst = dma_dest;
653 desc->len = total_len; 651 desc->len = total_len;
654 list_splice(&chain, &desc->txd.tx_list); 652 list_splice(&chain, &desc->txd.tx_list);
655 hw->ctl_f.int_en = !!(flags & DMA_PREP_INTERRUPT); 653 hw->ctl_f.int_en = !!(flags & DMA_PREP_INTERRUPT);
diff --git a/drivers/dma/ioat/dma.h b/drivers/dma/ioat/dma.h
index 84065dfa4d4..fa15e77652a 100644
--- a/drivers/dma/ioat/dma.h
+++ b/drivers/dma/ioat/dma.h
@@ -179,8 +179,6 @@ struct ioat_desc_sw {
179 struct list_head node; 179 struct list_head node;
180 int tx_cnt; 180 int tx_cnt;
181 size_t len; 181 size_t len;
182 dma_addr_t src;
183 dma_addr_t dst;
184 struct dma_async_tx_descriptor txd; 182 struct dma_async_tx_descriptor txd;
185}; 183};
186 184