All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] mmc: davinci_mmc: Drop dangling variable
@ 2024-02-15 13:28 Linus Walleij
  2024-02-15 14:06 ` Bartosz Golaszewski
  2024-02-15 16:55 ` Ulf Hansson
  0 siblings, 2 replies; 3+ messages in thread
From: Linus Walleij @ 2024-02-15 13:28 UTC (permalink / raw)
  To: Bartosz Golaszewski, Ulf Hansson
  Cc: linux-mmc, kernel test robot, Linus Walleij

The sg_miter conversion left a dangling unused variable.
Drop it.

Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202402142042.vg0lnLdb-lkp@intel.com/
Fixes: ed01d210fd91 ("mmc: davinci_mmc: Use sg_miter for PIO")
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
---
 drivers/mmc/host/davinci_mmc.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/drivers/mmc/host/davinci_mmc.c b/drivers/mmc/host/davinci_mmc.c
index c46577305138..8bd938919687 100644
--- a/drivers/mmc/host/davinci_mmc.c
+++ b/drivers/mmc/host/davinci_mmc.c
@@ -211,7 +211,6 @@ static void davinci_fifo_data_trans(struct mmc_davinci_host *host,
 					unsigned int n)
 {
 	struct sg_mapping_iter *sgm = &host->sg_miter;
-	size_t sglen;
 	u8 *p;
 	unsigned int i;
 
@@ -224,7 +223,6 @@ static void davinci_fifo_data_trans(struct mmc_davinci_host *host,
 		return;
 	}
 	p = sgm->addr;
-	sglen = sgm->length;
 
 	/* NOTE:  we never transfer more than rw_threshold bytes
 	 * to/from the fifo here; there's no I/O overlap.

---
base-commit: 26d7d52b6253574d5b6fec16a93e1110d1489cef
change-id: 20240215-mmc-fix-davinci-bda788e8ee69

Best regards,
-- 
Linus Walleij <linus.walleij@linaro.org>


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

* Re: [PATCH] mmc: davinci_mmc: Drop dangling variable
  2024-02-15 13:28 [PATCH] mmc: davinci_mmc: Drop dangling variable Linus Walleij
@ 2024-02-15 14:06 ` Bartosz Golaszewski
  2024-02-15 16:55 ` Ulf Hansson
  1 sibling, 0 replies; 3+ messages in thread
From: Bartosz Golaszewski @ 2024-02-15 14:06 UTC (permalink / raw)
  To: Linus Walleij; +Cc: Ulf Hansson, linux-mmc, kernel test robot

On Thu, 15 Feb 2024 at 14:28, Linus Walleij <linus.walleij@linaro.org> wrote:
>
> The sg_miter conversion left a dangling unused variable.
> Drop it.
>
> Reported-by: kernel test robot <lkp@intel.com>
> Closes: https://lore.kernel.org/oe-kbuild-all/202402142042.vg0lnLdb-lkp@intel.com/
> Fixes: ed01d210fd91 ("mmc: davinci_mmc: Use sg_miter for PIO")
> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
> ---
>  drivers/mmc/host/davinci_mmc.c | 2 --
>  1 file changed, 2 deletions(-)
>
> diff --git a/drivers/mmc/host/davinci_mmc.c b/drivers/mmc/host/davinci_mmc.c
> index c46577305138..8bd938919687 100644
> --- a/drivers/mmc/host/davinci_mmc.c
> +++ b/drivers/mmc/host/davinci_mmc.c
> @@ -211,7 +211,6 @@ static void davinci_fifo_data_trans(struct mmc_davinci_host *host,
>                                         unsigned int n)
>  {
>         struct sg_mapping_iter *sgm = &host->sg_miter;
> -       size_t sglen;
>         u8 *p;
>         unsigned int i;
>
> @@ -224,7 +223,6 @@ static void davinci_fifo_data_trans(struct mmc_davinci_host *host,
>                 return;
>         }
>         p = sgm->addr;
> -       sglen = sgm->length;
>
>         /* NOTE:  we never transfer more than rw_threshold bytes
>          * to/from the fifo here; there's no I/O overlap.
>
> ---
> base-commit: 26d7d52b6253574d5b6fec16a93e1110d1489cef
> change-id: 20240215-mmc-fix-davinci-bda788e8ee69
>
> Best regards,
> --
> Linus Walleij <linus.walleij@linaro.org>
>

Good catch

Acked-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>

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

* Re: [PATCH] mmc: davinci_mmc: Drop dangling variable
  2024-02-15 13:28 [PATCH] mmc: davinci_mmc: Drop dangling variable Linus Walleij
  2024-02-15 14:06 ` Bartosz Golaszewski
@ 2024-02-15 16:55 ` Ulf Hansson
  1 sibling, 0 replies; 3+ messages in thread
From: Ulf Hansson @ 2024-02-15 16:55 UTC (permalink / raw)
  To: Linus Walleij; +Cc: Bartosz Golaszewski, linux-mmc, kernel test robot

On Thu, 15 Feb 2024 at 14:28, Linus Walleij <linus.walleij@linaro.org> wrote:
>
> The sg_miter conversion left a dangling unused variable.
> Drop it.
>
> Reported-by: kernel test robot <lkp@intel.com>
> Closes: https://lore.kernel.org/oe-kbuild-all/202402142042.vg0lnLdb-lkp@intel.com/
> Fixes: ed01d210fd91 ("mmc: davinci_mmc: Use sg_miter for PIO")
> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>

Applied for next, thanks!

Kind regards
Uffe


> ---
>  drivers/mmc/host/davinci_mmc.c | 2 --
>  1 file changed, 2 deletions(-)
>
> diff --git a/drivers/mmc/host/davinci_mmc.c b/drivers/mmc/host/davinci_mmc.c
> index c46577305138..8bd938919687 100644
> --- a/drivers/mmc/host/davinci_mmc.c
> +++ b/drivers/mmc/host/davinci_mmc.c
> @@ -211,7 +211,6 @@ static void davinci_fifo_data_trans(struct mmc_davinci_host *host,
>                                         unsigned int n)
>  {
>         struct sg_mapping_iter *sgm = &host->sg_miter;
> -       size_t sglen;
>         u8 *p;
>         unsigned int i;
>
> @@ -224,7 +223,6 @@ static void davinci_fifo_data_trans(struct mmc_davinci_host *host,
>                 return;
>         }
>         p = sgm->addr;
> -       sglen = sgm->length;
>
>         /* NOTE:  we never transfer more than rw_threshold bytes
>          * to/from the fifo here; there's no I/O overlap.
>
> ---
> base-commit: 26d7d52b6253574d5b6fec16a93e1110d1489cef
> change-id: 20240215-mmc-fix-davinci-bda788e8ee69
>
> Best regards,
> --
> Linus Walleij <linus.walleij@linaro.org>
>

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

end of thread, other threads:[~2024-02-15 16:55 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-02-15 13:28 [PATCH] mmc: davinci_mmc: Drop dangling variable Linus Walleij
2024-02-15 14:06 ` Bartosz Golaszewski
2024-02-15 16:55 ` Ulf Hansson

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.