All of lore.kernel.org
 help / color / mirror / Atom feed
From: Ulf Hansson <ulf.hansson@linaro.org>
To: Yang Li <yang.lee@linux.alibaba.com>
Cc: linux-mmc <linux-mmc@vger.kernel.org>,
	Linux Kernel Mailing List <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] mmc: moxart: Remove unused variable 'dma_time' and 'pio_time'
Date: Mon, 12 Apr 2021 09:52:00 +0200	[thread overview]
Message-ID: <CAPDyKFrptDsdyUoJaSz9F1iYgW_02Kj6ay5X+oFCmJp2Hg=RWQ@mail.gmail.com> (raw)
In-Reply-To: <1617357231-93064-1-git-send-email-yang.lee@linux.alibaba.com>

On Fri, 2 Apr 2021 at 11:53, Yang Li <yang.lee@linux.alibaba.com> wrote:
>
> Fixes the following W=1 kernel build warning(s):
>
> drivers/mmc/host/moxart-mmc.c:257:7: warning: variable ‘dma_time’ set
> but not used
> drivers/mmc/host/moxart-mmc.c:395:7: warning: variable ‘pio_time’ set
> but not used
>
> Reported-by: Abaci Robot <abaci@linux.alibaba.com>
> Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>

Applied for next, thanks!

Kind regards
Uffe


> ---
>  drivers/mmc/host/moxart-mmc.c | 10 ++++------
>  1 file changed, 4 insertions(+), 6 deletions(-)
>
> diff --git a/drivers/mmc/host/moxart-mmc.c b/drivers/mmc/host/moxart-mmc.c
> index 89bff4e..bde2988 100644
> --- a/drivers/mmc/host/moxart-mmc.c
> +++ b/drivers/mmc/host/moxart-mmc.c
> @@ -257,7 +257,6 @@ static void moxart_dma_complete(void *param)
>  static void moxart_transfer_dma(struct mmc_data *data, struct moxart_host *host)
>  {
>         u32 len, dir_slave;
> -       long dma_time;
>         struct dma_async_tx_descriptor *desc = NULL;
>         struct dma_chan *dma_chan;
>
> @@ -294,8 +293,8 @@ static void moxart_transfer_dma(struct mmc_data *data, struct moxart_host *host)
>
>         data->bytes_xfered += host->data_remain;
>
> -       dma_time = wait_for_completion_interruptible_timeout(
> -                  &host->dma_complete, host->timeout);
> +       wait_for_completion_interruptible_timeout(&host->dma_complete,
> +                                                 host->timeout);
>
>         dma_unmap_sg(dma_chan->device->dev,
>                      data->sg, data->sg_len,
> @@ -395,7 +394,6 @@ static void moxart_prepare_data(struct moxart_host *host)
>  static void moxart_request(struct mmc_host *mmc, struct mmc_request *mrq)
>  {
>         struct moxart_host *host = mmc_priv(mmc);
> -       long pio_time;
>         unsigned long flags;
>         u32 status;
>
> @@ -431,8 +429,8 @@ static void moxart_request(struct mmc_host *mmc, struct mmc_request *mrq)
>                         spin_unlock_irqrestore(&host->lock, flags);
>
>                         /* PIO transfers start from interrupt. */
> -                       pio_time = wait_for_completion_interruptible_timeout(
> -                                  &host->pio_complete, host->timeout);
> +                       wait_for_completion_interruptible_timeout(&host->pio_complete,
> +                                                                 host->timeout);
>
>                         spin_lock_irqsave(&host->lock, flags);
>                 }
> --
> 1.8.3.1
>

      reply	other threads:[~2021-04-12  7:52 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-04-02  9:53 [PATCH] mmc: moxart: Remove unused variable 'dma_time' and 'pio_time' Yang Li
2021-04-12  7:52 ` Ulf Hansson [this message]

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='CAPDyKFrptDsdyUoJaSz9F1iYgW_02Kj6ay5X+oFCmJp2Hg=RWQ@mail.gmail.com' \
    --to=ulf.hansson@linaro.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mmc@vger.kernel.org \
    --cc=yang.lee@linux.alibaba.com \
    /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 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.