diff options
author | Dave Jiang <dave.jiang@intel.com> | 2015-08-11 11:49:05 -0400 |
---|---|---|
committer | Vinod Koul <vinod.koul@intel.com> | 2015-08-17 04:07:31 -0400 |
commit | c7b0e8d7b5d1523ca3a85d3d3d9d113bb19a5668 (patch) | |
tree | 4c11475758d8618f304867886764e6511fc6e2a7 | |
parent | ef97bd0f59741ca1a555b69b8708f6601e35c3ed (diff) |
dmaengine: ioatdma: fixup kernel doc errors from dma.h
./scripts/kerne-doc is reporting errors on dma.h. Clean up all reported
errors.
Signed-off-by: Dave Jiang <dave.jiang@intel.com>
Acked-by: Dan Williams <dan.j.williams@intel.com>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
-rw-r--r-- | drivers/dma/ioat/dma.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/drivers/dma/ioat/dma.h b/drivers/dma/ioat/dma.h index df569d810b8f..9bc1395f23b3 100644 --- a/drivers/dma/ioat/dma.h +++ b/drivers/dma/ioat/dma.h | |||
@@ -63,11 +63,15 @@ enum ioat_irq_mode { | |||
63 | * @pdev: PCI-Express device | 63 | * @pdev: PCI-Express device |
64 | * @reg_base: MMIO register space base address | 64 | * @reg_base: MMIO register space base address |
65 | * @dma_pool: for allocating DMA descriptors | 65 | * @dma_pool: for allocating DMA descriptors |
66 | * @completion_pool: DMA buffers for completion ops | ||
67 | * @sed_hw_pool: DMA super descriptor pools | ||
66 | * @dma_dev: embedded struct dma_device | 68 | * @dma_dev: embedded struct dma_device |
67 | * @version: version of ioatdma device | 69 | * @version: version of ioatdma device |
68 | * @msix_entries: irq handlers | 70 | * @msix_entries: irq handlers |
69 | * @idx: per channel data | 71 | * @idx: per channel data |
70 | * @dca: direct cache access context | 72 | * @dca: direct cache access context |
73 | * @irq_mode: interrupt mode (INTX, MSI, MSIX) | ||
74 | * @cap: read DMA capabilities register | ||
71 | */ | 75 | */ |
72 | struct ioatdma_device { | 76 | struct ioatdma_device { |
73 | struct pci_dev *pdev; | 77 | struct pci_dev *pdev; |
@@ -138,9 +142,9 @@ struct ioat_sysfs_entry { | |||
138 | /** | 142 | /** |
139 | * struct ioat_sed_ent - wrapper around super extended hardware descriptor | 143 | * struct ioat_sed_ent - wrapper around super extended hardware descriptor |
140 | * @hw: hardware SED | 144 | * @hw: hardware SED |
141 | * @sed_dma: dma address for the SED | 145 | * @dma: dma address for the SED |
142 | * @list: list member | ||
143 | * @parent: point to the dma descriptor that's the parent | 146 | * @parent: point to the dma descriptor that's the parent |
147 | * @hw_pool: descriptor pool index | ||
144 | */ | 148 | */ |
145 | struct ioat_sed_ent { | 149 | struct ioat_sed_ent { |
146 | struct ioat_sed_raw_descriptor *hw; | 150 | struct ioat_sed_raw_descriptor *hw; |
@@ -152,7 +156,6 @@ struct ioat_sed_ent { | |||
152 | /** | 156 | /** |
153 | * struct ioat_ring_ent - wrapper around hardware descriptor | 157 | * struct ioat_ring_ent - wrapper around hardware descriptor |
154 | * @hw: hardware DMA descriptor (for memcpy) | 158 | * @hw: hardware DMA descriptor (for memcpy) |
155 | * @fill: hardware fill descriptor | ||
156 | * @xor: hardware xor descriptor | 159 | * @xor: hardware xor descriptor |
157 | * @xor_ex: hardware xor extension descriptor | 160 | * @xor_ex: hardware xor extension descriptor |
158 | * @pq: hardware pq descriptor | 161 | * @pq: hardware pq descriptor |
@@ -163,6 +166,7 @@ struct ioat_sed_ent { | |||
163 | * @len: total transaction length for unmap | 166 | * @len: total transaction length for unmap |
164 | * @result: asynchronous result of validate operations | 167 | * @result: asynchronous result of validate operations |
165 | * @id: identifier for debug | 168 | * @id: identifier for debug |
169 | * @sed: pointer to super extended descriptor sw desc | ||
166 | */ | 170 | */ |
167 | 171 | ||
168 | struct ioat_ring_ent { | 172 | struct ioat_ring_ent { |