public inbox for kernel-janitors@vger.kernel.org
 help / color / mirror / Atom feed
From: Pierre Yves MORDRET <pierre-yves.mordret@st.com>
To: linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH][dma-next] dmaengine: stm32: remove redundant initialization of hwdesc
Date: Wed, 11 Oct 2017 12:16:28 +0000	[thread overview]
Message-ID: <c7a5f1e9-1a70-dfd8-025e-7889b170de93@st.com> (raw)
In-Reply-To: <20171011102822.19166-1-colin.king@canonical.com>


On 10/11/2017 12:28 PM, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
> 
> hwdesc is being initialized to desc->hwdesc but this is never read
> as hwdesc is overwritten in a for-loop.  Remove the redundant
> initialization and move the declaration of hwdesc into the for-loop.
> 
> Cleans up clang warning:
> Value stored to 'hwdesc' during its initialization is never read
> 
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> ---
>  drivers/dma/stm32-mdma.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/dma/stm32-mdma.c b/drivers/dma/stm32-mdma.c
> index 0db59a7e80e0..d3be6bffdf12 100644
> --- a/drivers/dma/stm32-mdma.c
> +++ b/drivers/dma/stm32-mdma.c
> @@ -1252,13 +1252,13 @@ static size_t stm32_mdma_desc_residue(struct stm32_mdma_chan *chan,
>  				      u32 curr_hwdesc)
>  {
>  	struct stm32_mdma_device *dmadev = stm32_mdma_get_dev(chan);
> -	struct stm32_mdma_hwdesc *hwdesc = desc->hwdesc;
>  	u32 cbndtr, residue, modulo, burst_size;
>  	int i;
>  
>  	residue = 0;
>  	for (i = curr_hwdesc + 1; i < desc->count; i++) {
> -		hwdesc = &desc->hwdesc[i];
> +		struct stm32_mdma_hwdesc *hwdesc = &desc->hwdesc[i];
> +
>  		residue += STM32_MDMA_CBNDTR_BNDT(hwdesc->cbndtr);
>  	}
>  	cbndtr = stm32_mdma_read(dmadev, STM32_MDMA_CBNDTR(chan->id));
> 

Acked-by: Pierre-Yves MORDRET <pierre-yves.mordret@st.com>

  reply	other threads:[~2017-10-11 12:16 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-10-11 10:28 [PATCH][dma-next] dmaengine: stm32: remove redundant initialization of hwdesc Colin King
2017-10-11 12:16 ` Pierre Yves MORDRET [this message]
2017-10-12 14:17 ` Vinod Koul

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=c7a5f1e9-1a70-dfd8-025e-7889b170de93@st.com \
    --to=pierre-yves.mordret@st.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox