linux-mmc.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Ulf Hansson <ulf.hansson@linaro.org>
To: Yangbo Lu <yangbo.lu@nxp.com>
Cc: "linux-mmc@vger.kernel.org" <linux-mmc@vger.kernel.org>,
	Adrian Hunter <adrian.hunter@intel.com>,
	Yinbo Zhu <yinbo.zhu@nxp.com>
Subject: Re: [PATCH] mmc: sdhci-of-esdhc: fix P2020 errata handling
Date: Wed, 18 Dec 2019 15:01:23 +0100	[thread overview]
Message-ID: <CAPDyKFp3bMAyoxzRH9E5CFpBvV-yhoqQs2XrNy5e3MmzxONczw@mail.gmail.com> (raw)
In-Reply-To: <20191216031842.40068-1-yangbo.lu@nxp.com>

On Mon, 16 Dec 2019 at 04:19, Yangbo Lu <yangbo.lu@nxp.com> wrote:
>
> Two previous patches introduced below quirks for P2020 platforms.
> - SDHCI_QUIRK_RESET_AFTER_REQUEST
> - SDHCI_QUIRK_BROKEN_TIMEOUT_VAL
>
> The patches made a mistake to add them in quirks2 of sdhci_host
> structure, while they were defined for quirks.
>         host->quirks2 |= SDHCI_QUIRK_RESET_AFTER_REQUEST;
>         host->quirks2 |= SDHCI_QUIRK_BROKEN_TIMEOUT_VAL;
>
> This patch is to fix them.
>         host->quirks |= SDHCI_QUIRK_RESET_AFTER_REQUEST;
>         host->quirks |= SDHCI_QUIRK_BROKEN_TIMEOUT_VAL;
>
> Fixes: 05cb6b2a66fa ("mmc: sdhci-of-esdhc: add erratum eSDHC-A001 and A-008358 support")
> Fixes: a46e42712596 ("mmc: sdhci-of-esdhc: add erratum eSDHC5 support")
> Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com>

Applied for fixes and added a stable tag, thanks!

Kind regards
Uffe


> ---
>  drivers/mmc/host/sdhci-of-esdhc.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/mmc/host/sdhci-of-esdhc.c b/drivers/mmc/host/sdhci-of-esdhc.c
> index 7f87a90..4ca640e 100644
> --- a/drivers/mmc/host/sdhci-of-esdhc.c
> +++ b/drivers/mmc/host/sdhci-of-esdhc.c
> @@ -1300,8 +1300,8 @@ static int sdhci_esdhc_probe(struct platform_device *pdev)
>                 host->quirks &= ~SDHCI_QUIRK_NO_BUSY_IRQ;
>
>         if (of_find_compatible_node(NULL, NULL, "fsl,p2020-esdhc")) {
> -               host->quirks2 |= SDHCI_QUIRK_RESET_AFTER_REQUEST;
> -               host->quirks2 |= SDHCI_QUIRK_BROKEN_TIMEOUT_VAL;
> +               host->quirks |= SDHCI_QUIRK_RESET_AFTER_REQUEST;
> +               host->quirks |= SDHCI_QUIRK_BROKEN_TIMEOUT_VAL;
>         }
>
>         if (of_device_is_compatible(np, "fsl,p5040-esdhc") ||
> --
> 2.7.4
>

      reply	other threads:[~2019-12-18 14:02 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-12-16  3:18 [PATCH] mmc: sdhci-of-esdhc: fix P2020 errata handling Yangbo Lu
2019-12-18 14:01 ` 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=CAPDyKFp3bMAyoxzRH9E5CFpBvV-yhoqQs2XrNy5e3MmzxONczw@mail.gmail.com \
    --to=ulf.hansson@linaro.org \
    --cc=adrian.hunter@intel.com \
    --cc=linux-mmc@vger.kernel.org \
    --cc=yangbo.lu@nxp.com \
    --cc=yinbo.zhu@nxp.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).