aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVinod Koul <vinod.koul@intel.com>2016-12-09 04:54:12 -0500
committerVinod Koul <vinod.koul@intel.com>2016-12-12 11:55:22 -0500
commitcad0eca39fc001e17d422f08e64d67c6f9155cbe (patch)
tree0b962c18e72bc1236ac843cc0cc9d73cb7760db7
parent2a440bd417a57d26453c361951052656e4c837b1 (diff)
dmaengine: stm32-dma: remove unused ‘src_addr’
In stm32_dma_set_xfer_param(), variable ‘src_addr’ is initialized but never used, which leads to warning with W=1 drivers/dma/stm32-dma.c: In function ‘stm32_dma_set_xfer_param’: drivers/dma/stm32-dma.c:577:13: warning: variable ‘src_addr’ set but not used [-Wunused-but-set-variable] dma_addr_t src_addr, dst_addr; So remove it. Reviewed-by: M'boumba Cedric Madianga <cedric.madianga@gmail.com> Signed-off-by: Vinod Koul <vinod.koul@intel.com>
-rw-r--r--drivers/dma/stm32-dma.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/dma/stm32-dma.c b/drivers/dma/stm32-dma.c
index 1f09189e31d9..3688d0873a3e 100644
--- a/drivers/dma/stm32-dma.c
+++ b/drivers/dma/stm32-dma.c
@@ -573,14 +573,12 @@ static int stm32_dma_set_xfer_param(struct stm32_dma_chan *chan,
573 int src_bus_width, dst_bus_width; 573 int src_bus_width, dst_bus_width;
574 int src_burst_size, dst_burst_size; 574 int src_burst_size, dst_burst_size;
575 u32 src_maxburst, dst_maxburst; 575 u32 src_maxburst, dst_maxburst;
576 dma_addr_t src_addr;
577 u32 dma_scr = 0; 576 u32 dma_scr = 0;
578 577
579 src_addr_width = chan->dma_sconfig.src_addr_width; 578 src_addr_width = chan->dma_sconfig.src_addr_width;
580 dst_addr_width = chan->dma_sconfig.dst_addr_width; 579 dst_addr_width = chan->dma_sconfig.dst_addr_width;
581 src_maxburst = chan->dma_sconfig.src_maxburst; 580 src_maxburst = chan->dma_sconfig.src_maxburst;
582 dst_maxburst = chan->dma_sconfig.dst_maxburst; 581 dst_maxburst = chan->dma_sconfig.dst_maxburst;
583 src_addr = chan->dma_sconfig.src_addr;
584 582
585 switch (direction) { 583 switch (direction) {
586 case DMA_MEM_TO_DEV: 584 case DMA_MEM_TO_DEV: