diff options
author | Dan Williams <dan.j.williams@intel.com> | 2009-09-08 12:00:46 -0700 |
---|---|---|
committer | Dan Williams <dan.j.williams@intel.com> | 2009-09-08 17:30:23 -0700 |
commit | 38e12f64a165e83617c21dae3c15972fd8d639f5 (patch) | |
tree | 43f0951cf0b91b0d831a469d0147c1c4cdd15dfa /drivers/dma/ioat/dma.h | |
parent | 5cbafa65b92ee4f5b8ba915cddf94b91f186b989 (diff) | |
download | kernel_samsung_crespo-38e12f64a165e83617c21dae3c15972fd8d639f5.zip kernel_samsung_crespo-38e12f64a165e83617c21dae3c15972fd8d639f5.tar.gz kernel_samsung_crespo-38e12f64a165e83617c21dae3c15972fd8d639f5.tar.bz2 |
ioat1: kill unused unmap parameters
The unified ioat1/ioat2 ioat_dma_unmap() implementation derives the
source and dest addresses from the unmap descriptor. There is no longer
a need to track this information in struct ioat_desc_sw.
Signed-off-by: Maciej Sosnowski <maciej.sosnowski@intel.com>
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Diffstat (limited to 'drivers/dma/ioat/dma.h')
-rw-r--r-- | drivers/dma/ioat/dma.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/dma/ioat/dma.h b/drivers/dma/ioat/dma.h index 84065df..fa15e77 100644 --- a/drivers/dma/ioat/dma.h +++ b/drivers/dma/ioat/dma.h @@ -179,8 +179,6 @@ struct ioat_desc_sw { struct list_head node; int tx_cnt; size_t len; - dma_addr_t src; - dma_addr_t dst; struct dma_async_tx_descriptor txd; }; |