All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] dmaengine: xilinx_dma: Remove set but unused ‘tail_desc’
@ 2019-05-21 14:10 Vinod Koul
  2019-05-21 14:20 ` Radhey Shyam Pandey
  0 siblings, 1 reply; 3+ messages in thread
From: Vinod Koul @ 2019-05-21 14:10 UTC (permalink / raw)
  To: dmaengine
  Cc: Vinod Koul, Michal Simek, Radhey Shyam Pandey, Andrea Merello,
	Appana Durga Kedareswara Rao

We get a compiler warn about variable ‘tail_desc’ set but not used

drivers/dma/xilinx/xilinx_dma.c:1102:42: warning:
	variable ‘tail_desc’ set but not used [-Wunused-but-set-variable]
  struct xilinx_dma_tx_descriptor *desc, *tail_desc;

So remove it.

Signed-off-by: Vinod Koul <vkoul@kernel.org>
---
 drivers/dma/xilinx/xilinx_dma.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/drivers/dma/xilinx/xilinx_dma.c b/drivers/dma/xilinx/xilinx_dma.c
index c43c1a154604..34564224e675 100644
--- a/drivers/dma/xilinx/xilinx_dma.c
+++ b/drivers/dma/xilinx/xilinx_dma.c
@@ -1099,7 +1099,7 @@ static void xilinx_dma_start(struct xilinx_dma_chan *chan)
 static void xilinx_vdma_start_transfer(struct xilinx_dma_chan *chan)
 {
 	struct xilinx_vdma_config *config = &chan->config;
-	struct xilinx_dma_tx_descriptor *desc, *tail_desc;
+	struct xilinx_dma_tx_descriptor *desc;
 	u32 reg, j;
 	struct xilinx_vdma_tx_segment *segment, *last = NULL;
 	int i = 0;
@@ -1116,8 +1116,6 @@ static void xilinx_vdma_start_transfer(struct xilinx_dma_chan *chan)
 
 	desc = list_first_entry(&chan->pending_list,
 				struct xilinx_dma_tx_descriptor, node);
-	tail_desc = list_last_entry(&chan->pending_list,
-				    struct xilinx_dma_tx_descriptor, node);
 
 	/* Configure the hardware using info in the config structure */
 	if (chan->has_vflip) {
-- 
2.20.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* RE: [PATCH] dmaengine: xilinx_dma: Remove set but unused ‘tail_desc’
  2019-05-21 14:10 [PATCH] dmaengine: xilinx_dma: Remove set but unused ‘tail_desc’ Vinod Koul
@ 2019-05-21 14:20 ` Radhey Shyam Pandey
  2019-05-22  5:15   ` Vinod Koul
  0 siblings, 1 reply; 3+ messages in thread
From: Radhey Shyam Pandey @ 2019-05-21 14:20 UTC (permalink / raw)
  To: Vinod Koul, dmaengine
  Cc: Michal Simek, Andrea Merello, Appana Durga Kedareswara Rao

> -----Original Message-----
> From: Vinod Koul <vkoul@kernel.org>
> Sent: Tuesday, May 21, 2019 7:41 PM
> To: dmaengine@vger.kernel.org
> Cc: Vinod Koul <vkoul@kernel.org>; Michal Simek <michals@xilinx.com>;
> Radhey Shyam Pandey <radheys@xilinx.com>; Andrea Merello
> <andrea.merello@gmail.com>; Appana Durga Kedareswara Rao
> <appanad@xilinx.com>
> Subject: [PATCH] dmaengine: xilinx_dma: Remove set but unused ‘tail_desc’
> 
> We get a compiler warn about variable ‘tail_desc’ set but not used
> 
> drivers/dma/xilinx/xilinx_dma.c:1102:42: warning:
> 	variable ‘tail_desc’ set but not used [-Wunused-but-set-variable]
>   struct xilinx_dma_tx_descriptor *desc, *tail_desc;
> 
> So remove it.
> 
> Signed-off-by: Vinod Koul <vkoul@kernel.org>

Reviewed-by: Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
Thanks!

> ---
>  drivers/dma/xilinx/xilinx_dma.c | 4 +---
>  1 file changed, 1 insertion(+), 3 deletions(-)
> 
> diff --git a/drivers/dma/xilinx/xilinx_dma.c b/drivers/dma/xilinx/xilinx_dma.c
> index c43c1a154604..34564224e675 100644
> --- a/drivers/dma/xilinx/xilinx_dma.c
> +++ b/drivers/dma/xilinx/xilinx_dma.c
> @@ -1099,7 +1099,7 @@ static void xilinx_dma_start(struct xilinx_dma_chan
> *chan)
>  static void xilinx_vdma_start_transfer(struct xilinx_dma_chan *chan)
>  {
>  	struct xilinx_vdma_config *config = &chan->config;
> -	struct xilinx_dma_tx_descriptor *desc, *tail_desc;
> +	struct xilinx_dma_tx_descriptor *desc;
>  	u32 reg, j;
>  	struct xilinx_vdma_tx_segment *segment, *last = NULL;
>  	int i = 0;
> @@ -1116,8 +1116,6 @@ static void xilinx_vdma_start_transfer(struct
> xilinx_dma_chan *chan)
> 
>  	desc = list_first_entry(&chan->pending_list,
>  				struct xilinx_dma_tx_descriptor, node);
> -	tail_desc = list_last_entry(&chan->pending_list,
> -				    struct xilinx_dma_tx_descriptor, node);
> 
>  	/* Configure the hardware using info in the config structure */
>  	if (chan->has_vflip) {
> --
> 2.20.1


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] dmaengine: xilinx_dma: Remove set but unused ‘tail_desc’
  2019-05-21 14:20 ` Radhey Shyam Pandey
@ 2019-05-22  5:15   ` Vinod Koul
  0 siblings, 0 replies; 3+ messages in thread
From: Vinod Koul @ 2019-05-22  5:15 UTC (permalink / raw)
  To: Radhey Shyam Pandey
  Cc: dmaengine, Michal Simek, Andrea Merello, Appana Durga Kedareswara Rao

On 21-05-19, 14:20, Radhey Shyam Pandey wrote:
> > -----Original Message-----
> > From: Vinod Koul <vkoul@kernel.org>
> > Sent: Tuesday, May 21, 2019 7:41 PM
> > To: dmaengine@vger.kernel.org
> > Cc: Vinod Koul <vkoul@kernel.org>; Michal Simek <michals@xilinx.com>;
> > Radhey Shyam Pandey <radheys@xilinx.com>; Andrea Merello
> > <andrea.merello@gmail.com>; Appana Durga Kedareswara Rao
> > <appanad@xilinx.com>
> > Subject: [PATCH] dmaengine: xilinx_dma: Remove set but unused ‘tail_desc’
> > 
> > We get a compiler warn about variable ‘tail_desc’ set but not used
> > 
> > drivers/dma/xilinx/xilinx_dma.c:1102:42: warning:
> > 	variable ‘tail_desc’ set but not used [-Wunused-but-set-variable]
> >   struct xilinx_dma_tx_descriptor *desc, *tail_desc;
> > 
> > So remove it.
> > 
> > Signed-off-by: Vinod Koul <vkoul@kernel.org>
> 
> Reviewed-by: Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>

Thanks applied now

-- 
~Vinod

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2019-05-22  5:15 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-21 14:10 [PATCH] dmaengine: xilinx_dma: Remove set but unused ‘tail_desc’ Vinod Koul
2019-05-21 14:20 ` Radhey Shyam Pandey
2019-05-22  5:15   ` Vinod Koul

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.