diff options
author | Vinod Koul <vinod.koul@intel.com> | 2016-12-09 15:24:12 +0530 |
---|---|---|
committer | Vinod Koul <vinod.koul@intel.com> | 2016-12-12 22:25:21 +0530 |
commit | 4cc8044148e7c3b1de3074b061d5b1aa224f3635 (patch) | |
tree | 834874f6743e575e61e51b95fb954e3f642ac7fe /drivers/dma/ioat/dma.c | |
parent | 56c492f34110f85d6af3686df48755b85a912827 (diff) | |
download | linux-4cc8044148e7c3b1de3074b061d5b1aa224f3635.tar.gz linux-4cc8044148e7c3b1de3074b061d5b1aa224f3635.tar.bz2 linux-4cc8044148e7c3b1de3074b061d5b1aa224f3635.zip |
dmaengine: ioat: remove unused ‘ioat_dma’
In ioat_tx_submit_unlock(), variable ‘ioat_dma’ is initialized but never
used, which leads to warning with W=1
drivers/dma/ioat/dma.c: In function ‘ioat_alloc_ring_ent’:
drivers/dma/ioat/dma.c:341:25: warning: variable ‘ioat_dma’ set but not used [-Wunused-but-set-variable]
struct ioatdma_device *ioat_dma;
So remove it.
Cc: Dave Jiang <dave.jiang@intel.com>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Diffstat (limited to 'drivers/dma/ioat/dma.c')
-rw-r--r-- | drivers/dma/ioat/dma.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/dma/ioat/dma.c b/drivers/dma/ioat/dma.c index 49386ce04bf5..1350b880bc0d 100644 --- a/drivers/dma/ioat/dma.c +++ b/drivers/dma/ioat/dma.c @@ -341,15 +341,12 @@ ioat_alloc_ring_ent(struct dma_chan *chan, int idx, gfp_t flags) { struct ioat_dma_descriptor *hw; struct ioat_ring_ent *desc; - struct ioatdma_device *ioat_dma; struct ioatdma_chan *ioat_chan = to_ioat_chan(chan); int chunk; dma_addr_t phys; u8 *pos; off_t offs; - ioat_dma = to_ioatdma_device(chan->device); - chunk = idx / IOAT_DESCS_PER_2M; idx &= (IOAT_DESCS_PER_2M - 1); offs = idx * IOAT_DESC_SZ; |