aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/dma/ioatdma.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/dma/ioatdma.h')
-rw-r--r--drivers/dma/ioatdma.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/drivers/dma/ioatdma.h b/drivers/dma/ioatdma.h
index 2a319e124ece..5f9881e7b0ed 100644
--- a/drivers/dma/ioatdma.h
+++ b/drivers/dma/ioatdma.h
@@ -28,6 +28,8 @@
28#include <linux/cache.h> 28#include <linux/cache.h>
29#include <linux/pci_ids.h> 29#include <linux/pci_ids.h>
30 30
31#define IOAT_DMA_VERSION "1.26"
32
31enum ioat_interrupt { 33enum ioat_interrupt {
32 none = 0, 34 none = 0,
33 msix_multi_vector = 1, 35 msix_multi_vector = 1,
@@ -122,9 +124,9 @@ struct ioat_desc_sw {
122 struct ioat_dma_descriptor *hw; 124 struct ioat_dma_descriptor *hw;
123 struct list_head node; 125 struct list_head node;
124 int tx_cnt; 126 int tx_cnt;
125 DECLARE_PCI_UNMAP_LEN(len) 127 size_t len;
126 DECLARE_PCI_UNMAP_ADDR(src) 128 dma_addr_t src;
127 DECLARE_PCI_UNMAP_ADDR(dst) 129 dma_addr_t dst;
128 struct dma_async_tx_descriptor async_tx; 130 struct dma_async_tx_descriptor async_tx;
129}; 131};
130 132