* [PATCH V1] mmc: sdhci-uhs2: correction of incorrect type in argument
@ 2024-10-30 11:22 Victor Shih
2024-10-30 11:22 ` [PATCH V1] mmc: sdhci-uhs2: remove unnecessary variables Victor Shih
2024-10-30 13:07 ` [PATCH V1] mmc: sdhci-uhs2: correction of incorrect type in argument Adrian Hunter
0 siblings, 2 replies; 7+ messages in thread
From: Victor Shih @ 2024-10-30 11:22 UTC (permalink / raw)
To: ulf.hansson, adrian.hunter
Cc: linux-mmc, linux-kernel, benchuanggli, HL.Liu, Greg.tu,
Victor Shih, kernel test robot, Ben Chuang, Victor Shih
From: Victor Shih <victor.shih@genesyslogic.com.tw>
There is a type issue in the argument in the __sdhci_uhs2_send_command()
that will generate a warning when building the kernel.
Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202410260525.ZUuPhMJz-lkp@intel.com/
Signed-off-by: Ben Chuang <ben.chuang@genesyslogic.com.tw>
Signed-off-by: Victor Shih <victor.shih@genesyslogic.com.tw>
---
drivers/mmc/host/sdhci-uhs2.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/mmc/host/sdhci-uhs2.c b/drivers/mmc/host/sdhci-uhs2.c
index 43820eb5a7ea..7f41ca67b069 100644
--- a/drivers/mmc/host/sdhci-uhs2.c
+++ b/drivers/mmc/host/sdhci-uhs2.c
@@ -649,7 +649,8 @@ static void __sdhci_uhs2_send_command(struct sdhci_host *host, struct mmc_comman
* MSB when preparing config read/write commands.
*/
for (j = 0; j < cmd->uhs2_cmd->payload_len / sizeof(u32); j++) {
- sdhci_writel(host, *(cmd->uhs2_cmd->payload + j), SDHCI_UHS2_CMD_PACKET + i);
+ sdhci_writel(host, *(__force u32 *)(cmd->uhs2_cmd->payload + j),
+ SDHCI_UHS2_CMD_PACKET + i);
i += 4;
}
--
2.25.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH V1] mmc: sdhci-uhs2: remove unnecessary variables
2024-10-30 11:22 [PATCH V1] mmc: sdhci-uhs2: correction of incorrect type in argument Victor Shih
@ 2024-10-30 11:22 ` Victor Shih
2024-10-30 12:45 ` Adrian Hunter
2024-10-31 16:39 ` Ulf Hansson
2024-10-30 13:07 ` [PATCH V1] mmc: sdhci-uhs2: correction of incorrect type in argument Adrian Hunter
1 sibling, 2 replies; 7+ messages in thread
From: Victor Shih @ 2024-10-30 11:22 UTC (permalink / raw)
To: ulf.hansson, adrian.hunter
Cc: linux-mmc, linux-kernel, benchuanggli, HL.Liu, Greg.tu,
Victor Shih, kernel test robot, Ben Chuang, Victor Shih
From: Victor Shih <victor.shih@genesyslogic.com.tw>
There are unnecessary variables in the sdhci_uhs2_send_command()
that will generate a warning when building the kernel.
Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202410252107.y9EgrTbA-lkp@intel.com/
Signed-off-by: Ben Chuang <ben.chuang@genesyslogic.com.tw>
Signed-off-by: Victor Shih <victor.shih@genesyslogic.com.tw>
---
drivers/mmc/host/sdhci-uhs2.c | 25 -------------------------
1 file changed, 25 deletions(-)
diff --git a/drivers/mmc/host/sdhci-uhs2.c b/drivers/mmc/host/sdhci-uhs2.c
index c488c6d56015..43820eb5a7ea 100644
--- a/drivers/mmc/host/sdhci-uhs2.c
+++ b/drivers/mmc/host/sdhci-uhs2.c
@@ -684,7 +684,6 @@ static void __sdhci_uhs2_send_command(struct sdhci_host *host, struct mmc_comman
static bool sdhci_uhs2_send_command(struct sdhci_host *host, struct mmc_command *cmd)
{
- int flags;
u32 mask;
unsigned long timeout;
@@ -714,30 +713,6 @@ static bool sdhci_uhs2_send_command(struct sdhci_host *host, struct mmc_command
sdhci_uhs2_set_transfer_mode(host, cmd);
- if ((cmd->flags & MMC_RSP_136) && (cmd->flags & MMC_RSP_BUSY)) {
- WARN_ONCE(1, "Unsupported response type!\n");
- /*
- * This does not happen in practice because 136-bit response
- * commands never have busy waiting, so rather than complicate
- * the error path, just remove busy waiting and continue.
- */
- cmd->flags &= ~MMC_RSP_BUSY;
- }
-
- if (!(cmd->flags & MMC_RSP_PRESENT))
- flags = SDHCI_CMD_RESP_NONE;
- else if (cmd->flags & MMC_RSP_136)
- flags = SDHCI_CMD_RESP_LONG;
- else if (cmd->flags & MMC_RSP_BUSY)
- flags = SDHCI_CMD_RESP_SHORT_BUSY;
- else
- flags = SDHCI_CMD_RESP_SHORT;
-
- if (cmd->flags & MMC_RSP_CRC)
- flags |= SDHCI_CMD_CRC;
- if (cmd->flags & MMC_RSP_OPCODE)
- flags |= SDHCI_CMD_INDEX;
-
timeout = jiffies;
if (host->data_timeout)
timeout += nsecs_to_jiffies(host->data_timeout);
--
2.25.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH V1] mmc: sdhci-uhs2: remove unnecessary variables
2024-10-30 11:22 ` [PATCH V1] mmc: sdhci-uhs2: remove unnecessary variables Victor Shih
@ 2024-10-30 12:45 ` Adrian Hunter
2024-10-31 16:39 ` Ulf Hansson
1 sibling, 0 replies; 7+ messages in thread
From: Adrian Hunter @ 2024-10-30 12:45 UTC (permalink / raw)
To: Victor Shih, ulf.hansson
Cc: linux-mmc, linux-kernel, benchuanggli, HL.Liu, Greg.tu,
kernel test robot, Ben Chuang, Victor Shih
On 30/10/24 13:22, Victor Shih wrote:
> From: Victor Shih <victor.shih@genesyslogic.com.tw>
>
> There are unnecessary variables in the sdhci_uhs2_send_command()
> that will generate a warning when building the kernel.
>
> Reported-by: kernel test robot <lkp@intel.com>
> Closes: https://lore.kernel.org/oe-kbuild-all/202410252107.y9EgrTbA-lkp@intel.com/
> Signed-off-by: Ben Chuang <ben.chuang@genesyslogic.com.tw>
> Signed-off-by: Victor Shih <victor.shih@genesyslogic.com.tw>
Acked-by: Adrian Hunter <adrian.hunter@intel.com>
> ---
> drivers/mmc/host/sdhci-uhs2.c | 25 -------------------------
> 1 file changed, 25 deletions(-)
>
> diff --git a/drivers/mmc/host/sdhci-uhs2.c b/drivers/mmc/host/sdhci-uhs2.c
> index c488c6d56015..43820eb5a7ea 100644
> --- a/drivers/mmc/host/sdhci-uhs2.c
> +++ b/drivers/mmc/host/sdhci-uhs2.c
> @@ -684,7 +684,6 @@ static void __sdhci_uhs2_send_command(struct sdhci_host *host, struct mmc_comman
>
> static bool sdhci_uhs2_send_command(struct sdhci_host *host, struct mmc_command *cmd)
> {
> - int flags;
> u32 mask;
> unsigned long timeout;
>
> @@ -714,30 +713,6 @@ static bool sdhci_uhs2_send_command(struct sdhci_host *host, struct mmc_command
>
> sdhci_uhs2_set_transfer_mode(host, cmd);
>
> - if ((cmd->flags & MMC_RSP_136) && (cmd->flags & MMC_RSP_BUSY)) {
> - WARN_ONCE(1, "Unsupported response type!\n");
> - /*
> - * This does not happen in practice because 136-bit response
> - * commands never have busy waiting, so rather than complicate
> - * the error path, just remove busy waiting and continue.
> - */
> - cmd->flags &= ~MMC_RSP_BUSY;
> - }
> -
> - if (!(cmd->flags & MMC_RSP_PRESENT))
> - flags = SDHCI_CMD_RESP_NONE;
> - else if (cmd->flags & MMC_RSP_136)
> - flags = SDHCI_CMD_RESP_LONG;
> - else if (cmd->flags & MMC_RSP_BUSY)
> - flags = SDHCI_CMD_RESP_SHORT_BUSY;
> - else
> - flags = SDHCI_CMD_RESP_SHORT;
> -
> - if (cmd->flags & MMC_RSP_CRC)
> - flags |= SDHCI_CMD_CRC;
> - if (cmd->flags & MMC_RSP_OPCODE)
> - flags |= SDHCI_CMD_INDEX;
> -
> timeout = jiffies;
> if (host->data_timeout)
> timeout += nsecs_to_jiffies(host->data_timeout);
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH V1] mmc: sdhci-uhs2: correction of incorrect type in argument
2024-10-30 11:22 [PATCH V1] mmc: sdhci-uhs2: correction of incorrect type in argument Victor Shih
2024-10-30 11:22 ` [PATCH V1] mmc: sdhci-uhs2: remove unnecessary variables Victor Shih
@ 2024-10-30 13:07 ` Adrian Hunter
2024-10-31 16:39 ` Ulf Hansson
1 sibling, 1 reply; 7+ messages in thread
From: Adrian Hunter @ 2024-10-30 13:07 UTC (permalink / raw)
To: Victor Shih, ulf.hansson
Cc: linux-mmc, linux-kernel, benchuanggli, HL.Liu, Greg.tu,
kernel test robot, Ben Chuang, Victor Shih
On 30/10/24 13:22, Victor Shih wrote:
> From: Victor Shih <victor.shih@genesyslogic.com.tw>
>
> There is a type issue in the argument in the __sdhci_uhs2_send_command()
> that will generate a warning when building the kernel.
>
> Reported-by: kernel test robot <lkp@intel.com>
> Closes: https://lore.kernel.org/oe-kbuild-all/202410260525.ZUuPhMJz-lkp@intel.com/
> Signed-off-by: Ben Chuang <ben.chuang@genesyslogic.com.tw>
> Signed-off-by: Victor Shih <victor.shih@genesyslogic.com.tw>
> ---
> drivers/mmc/host/sdhci-uhs2.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/mmc/host/sdhci-uhs2.c b/drivers/mmc/host/sdhci-uhs2.c
> index 43820eb5a7ea..7f41ca67b069 100644
> --- a/drivers/mmc/host/sdhci-uhs2.c
> +++ b/drivers/mmc/host/sdhci-uhs2.c
> @@ -649,7 +649,8 @@ static void __sdhci_uhs2_send_command(struct sdhci_host *host, struct mmc_comman
> * MSB when preparing config read/write commands.
> */
> for (j = 0; j < cmd->uhs2_cmd->payload_len / sizeof(u32); j++) {
> - sdhci_writel(host, *(cmd->uhs2_cmd->payload + j), SDHCI_UHS2_CMD_PACKET + i);
> + sdhci_writel(host, *(__force u32 *)(cmd->uhs2_cmd->payload + j),
> + SDHCI_UHS2_CMD_PACKET + i);
> i += 4;
> }
>
Thanks for doing this.
I just noticed there is another issue that was reported but
did not get highlighted:
>> drivers/mmc/host/sdhci-uhs2.c:73:16: sparse: sparse: cast to restricted __be16
So the following is needed also:
diff --git a/drivers/mmc/host/sdhci-uhs2.c b/drivers/mmc/host/sdhci-uhs2.c
index 0a597240d299..c53b64d50c0d 100644
--- a/drivers/mmc/host/sdhci-uhs2.c
+++ b/drivers/mmc/host/sdhci-uhs2.c
@@ -70,7 +70,7 @@ EXPORT_SYMBOL_GPL(sdhci_uhs2_dump_regs);
static inline u16 uhs2_dev_cmd(struct mmc_command *cmd)
{
- return be16_to_cpu((__be16)cmd->uhs2_cmd->arg) & UHS2_ARG_IOADR_MASK;
+ return be16_to_cpu((__force __be16)cmd->uhs2_cmd->arg) & UHS2_ARG_IOADR_MASK;
}
static inline int mmc_opt_regulator_set_ocr(struct mmc_host *mmc,
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH V1] mmc: sdhci-uhs2: remove unnecessary variables
2024-10-30 11:22 ` [PATCH V1] mmc: sdhci-uhs2: remove unnecessary variables Victor Shih
2024-10-30 12:45 ` Adrian Hunter
@ 2024-10-31 16:39 ` Ulf Hansson
1 sibling, 0 replies; 7+ messages in thread
From: Ulf Hansson @ 2024-10-31 16:39 UTC (permalink / raw)
To: Victor Shih
Cc: adrian.hunter, linux-mmc, linux-kernel, benchuanggli, HL.Liu,
Greg.tu, kernel test robot, Ben Chuang, Victor Shih
On Wed, 30 Oct 2024 at 12:22, Victor Shih <victorshihgli@gmail.com> wrote:
>
> From: Victor Shih <victor.shih@genesyslogic.com.tw>
>
> There are unnecessary variables in the sdhci_uhs2_send_command()
> that will generate a warning when building the kernel.
>
> Reported-by: kernel test robot <lkp@intel.com>
> Closes: https://lore.kernel.org/oe-kbuild-all/202410252107.y9EgrTbA-lkp@intel.com/
> Signed-off-by: Ben Chuang <ben.chuang@genesyslogic.com.tw>
> Signed-off-by: Victor Shih <victor.shih@genesyslogic.com.tw>
Applied for next, thanks!
Kind regards
Uffe
> ---
> drivers/mmc/host/sdhci-uhs2.c | 25 -------------------------
> 1 file changed, 25 deletions(-)
>
> diff --git a/drivers/mmc/host/sdhci-uhs2.c b/drivers/mmc/host/sdhci-uhs2.c
> index c488c6d56015..43820eb5a7ea 100644
> --- a/drivers/mmc/host/sdhci-uhs2.c
> +++ b/drivers/mmc/host/sdhci-uhs2.c
> @@ -684,7 +684,6 @@ static void __sdhci_uhs2_send_command(struct sdhci_host *host, struct mmc_comman
>
> static bool sdhci_uhs2_send_command(struct sdhci_host *host, struct mmc_command *cmd)
> {
> - int flags;
> u32 mask;
> unsigned long timeout;
>
> @@ -714,30 +713,6 @@ static bool sdhci_uhs2_send_command(struct sdhci_host *host, struct mmc_command
>
> sdhci_uhs2_set_transfer_mode(host, cmd);
>
> - if ((cmd->flags & MMC_RSP_136) && (cmd->flags & MMC_RSP_BUSY)) {
> - WARN_ONCE(1, "Unsupported response type!\n");
> - /*
> - * This does not happen in practice because 136-bit response
> - * commands never have busy waiting, so rather than complicate
> - * the error path, just remove busy waiting and continue.
> - */
> - cmd->flags &= ~MMC_RSP_BUSY;
> - }
> -
> - if (!(cmd->flags & MMC_RSP_PRESENT))
> - flags = SDHCI_CMD_RESP_NONE;
> - else if (cmd->flags & MMC_RSP_136)
> - flags = SDHCI_CMD_RESP_LONG;
> - else if (cmd->flags & MMC_RSP_BUSY)
> - flags = SDHCI_CMD_RESP_SHORT_BUSY;
> - else
> - flags = SDHCI_CMD_RESP_SHORT;
> -
> - if (cmd->flags & MMC_RSP_CRC)
> - flags |= SDHCI_CMD_CRC;
> - if (cmd->flags & MMC_RSP_OPCODE)
> - flags |= SDHCI_CMD_INDEX;
> -
> timeout = jiffies;
> if (host->data_timeout)
> timeout += nsecs_to_jiffies(host->data_timeout);
> --
> 2.25.1
>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH V1] mmc: sdhci-uhs2: correction of incorrect type in argument
2024-10-30 13:07 ` [PATCH V1] mmc: sdhci-uhs2: correction of incorrect type in argument Adrian Hunter
@ 2024-10-31 16:39 ` Ulf Hansson
2024-11-01 10:40 ` Victor Shih
0 siblings, 1 reply; 7+ messages in thread
From: Ulf Hansson @ 2024-10-31 16:39 UTC (permalink / raw)
To: Adrian Hunter, Victor Shih
Cc: linux-mmc, linux-kernel, benchuanggli, HL.Liu, Greg.tu,
kernel test robot, Ben Chuang, Victor Shih
On Wed, 30 Oct 2024 at 14:08, Adrian Hunter <adrian.hunter@intel.com> wrote:
>
> On 30/10/24 13:22, Victor Shih wrote:
> > From: Victor Shih <victor.shih@genesyslogic.com.tw>
> >
> > There is a type issue in the argument in the __sdhci_uhs2_send_command()
> > that will generate a warning when building the kernel.
> >
> > Reported-by: kernel test robot <lkp@intel.com>
> > Closes: https://lore.kernel.org/oe-kbuild-all/202410260525.ZUuPhMJz-lkp@intel.com/
> > Signed-off-by: Ben Chuang <ben.chuang@genesyslogic.com.tw>
> > Signed-off-by: Victor Shih <victor.shih@genesyslogic.com.tw>
Applied for next and by adding a suggested-by tag from Adrian, thanks!
> > ---
> > drivers/mmc/host/sdhci-uhs2.c | 3 ++-
> > 1 file changed, 2 insertions(+), 1 deletion(-)
> >
> > diff --git a/drivers/mmc/host/sdhci-uhs2.c b/drivers/mmc/host/sdhci-uhs2.c
> > index 43820eb5a7ea..7f41ca67b069 100644
> > --- a/drivers/mmc/host/sdhci-uhs2.c
> > +++ b/drivers/mmc/host/sdhci-uhs2.c
> > @@ -649,7 +649,8 @@ static void __sdhci_uhs2_send_command(struct sdhci_host *host, struct mmc_comman
> > * MSB when preparing config read/write commands.
> > */
> > for (j = 0; j < cmd->uhs2_cmd->payload_len / sizeof(u32); j++) {
> > - sdhci_writel(host, *(cmd->uhs2_cmd->payload + j), SDHCI_UHS2_CMD_PACKET + i);
> > + sdhci_writel(host, *(__force u32 *)(cmd->uhs2_cmd->payload + j),
> > + SDHCI_UHS2_CMD_PACKET + i);
> > i += 4;
> > }
> >
>
> Thanks for doing this.
>
> I just noticed there is another issue that was reported but
> did not get highlighted:
>
> >> drivers/mmc/host/sdhci-uhs2.c:73:16: sparse: sparse: cast to restricted __be16
>
> So the following is needed also:
>
> diff --git a/drivers/mmc/host/sdhci-uhs2.c b/drivers/mmc/host/sdhci-uhs2.c
> index 0a597240d299..c53b64d50c0d 100644
> --- a/drivers/mmc/host/sdhci-uhs2.c
> +++ b/drivers/mmc/host/sdhci-uhs2.c
> @@ -70,7 +70,7 @@ EXPORT_SYMBOL_GPL(sdhci_uhs2_dump_regs);
>
> static inline u16 uhs2_dev_cmd(struct mmc_command *cmd)
> {
> - return be16_to_cpu((__be16)cmd->uhs2_cmd->arg) & UHS2_ARG_IOADR_MASK;
> + return be16_to_cpu((__force __be16)cmd->uhs2_cmd->arg) & UHS2_ARG_IOADR_MASK;
> }
>
> static inline int mmc_opt_regulator_set_ocr(struct mmc_host *mmc,
>
Let's deal with the issue above as another separate patch on top.
Victor, can you please submit a patch according to the above and add
Adrian's suggested-by tag.
Kind regards
Uffe
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH V1] mmc: sdhci-uhs2: correction of incorrect type in argument
2024-10-31 16:39 ` Ulf Hansson
@ 2024-11-01 10:40 ` Victor Shih
0 siblings, 0 replies; 7+ messages in thread
From: Victor Shih @ 2024-11-01 10:40 UTC (permalink / raw)
To: Ulf Hansson
Cc: Adrian Hunter, linux-mmc, linux-kernel, benchuanggli, HL.Liu,
Greg.tu, kernel test robot, Ben Chuang, Victor Shih
On Fri, Nov 1, 2024 at 12:39 AM Ulf Hansson <ulf.hansson@linaro.org> wrote:
>
> On Wed, 30 Oct 2024 at 14:08, Adrian Hunter <adrian.hunter@intel.com> wrote:
> >
> > On 30/10/24 13:22, Victor Shih wrote:
> > > From: Victor Shih <victor.shih@genesyslogic.com.tw>
> > >
> > > There is a type issue in the argument in the __sdhci_uhs2_send_command()
> > > that will generate a warning when building the kernel.
> > >
> > > Reported-by: kernel test robot <lkp@intel.com>
> > > Closes: https://lore.kernel.org/oe-kbuild-all/202410260525.ZUuPhMJz-lkp@intel.com/
> > > Signed-off-by: Ben Chuang <ben.chuang@genesyslogic.com.tw>
> > > Signed-off-by: Victor Shih <victor.shih@genesyslogic.com.tw>
>
> Applied for next and by adding a suggested-by tag from Adrian, thanks!
>
> > > ---
> > > drivers/mmc/host/sdhci-uhs2.c | 3 ++-
> > > 1 file changed, 2 insertions(+), 1 deletion(-)
> > >
> > > diff --git a/drivers/mmc/host/sdhci-uhs2.c b/drivers/mmc/host/sdhci-uhs2.c
> > > index 43820eb5a7ea..7f41ca67b069 100644
> > > --- a/drivers/mmc/host/sdhci-uhs2.c
> > > +++ b/drivers/mmc/host/sdhci-uhs2.c
> > > @@ -649,7 +649,8 @@ static void __sdhci_uhs2_send_command(struct sdhci_host *host, struct mmc_comman
> > > * MSB when preparing config read/write commands.
> > > */
> > > for (j = 0; j < cmd->uhs2_cmd->payload_len / sizeof(u32); j++) {
> > > - sdhci_writel(host, *(cmd->uhs2_cmd->payload + j), SDHCI_UHS2_CMD_PACKET + i);
> > > + sdhci_writel(host, *(__force u32 *)(cmd->uhs2_cmd->payload + j),
> > > + SDHCI_UHS2_CMD_PACKET + i);
> > > i += 4;
> > > }
> > >
> >
> > Thanks for doing this.
> >
> > I just noticed there is another issue that was reported but
> > did not get highlighted:
> >
> > >> drivers/mmc/host/sdhci-uhs2.c:73:16: sparse: sparse: cast to restricted __be16
> >
> > So the following is needed also:
> >
> > diff --git a/drivers/mmc/host/sdhci-uhs2.c b/drivers/mmc/host/sdhci-uhs2.c
> > index 0a597240d299..c53b64d50c0d 100644
> > --- a/drivers/mmc/host/sdhci-uhs2.c
> > +++ b/drivers/mmc/host/sdhci-uhs2.c
> > @@ -70,7 +70,7 @@ EXPORT_SYMBOL_GPL(sdhci_uhs2_dump_regs);
> >
> > static inline u16 uhs2_dev_cmd(struct mmc_command *cmd)
> > {
> > - return be16_to_cpu((__be16)cmd->uhs2_cmd->arg) & UHS2_ARG_IOADR_MASK;
> > + return be16_to_cpu((__force __be16)cmd->uhs2_cmd->arg) & UHS2_ARG_IOADR_MASK;
> > }
> >
> > static inline int mmc_opt_regulator_set_ocr(struct mmc_host *mmc,
> >
>
> Let's deal with the issue above as another separate patch on top.
> Victor, can you please submit a patch according to the above and add
> Adrian's suggested-by tag.
>
> Kind regards
> Uffe
Hi, Ulf and Adrian
I got it. I will be submitting a separate patch based on the above comments
and adding Adrian's suggested-by tag.
Thank you very much for your help and advice
Thanks, Victor Shih
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2024-11-01 10:40 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-30 11:22 [PATCH V1] mmc: sdhci-uhs2: correction of incorrect type in argument Victor Shih
2024-10-30 11:22 ` [PATCH V1] mmc: sdhci-uhs2: remove unnecessary variables Victor Shih
2024-10-30 12:45 ` Adrian Hunter
2024-10-31 16:39 ` Ulf Hansson
2024-10-30 13:07 ` [PATCH V1] mmc: sdhci-uhs2: correction of incorrect type in argument Adrian Hunter
2024-10-31 16:39 ` Ulf Hansson
2024-11-01 10:40 ` Victor Shih
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox