]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
mmc: sdhci-of-at91: fix quirk2 overwrite
authorEugen Hristev <eugen.hristev@microchip.com>
Thu, 14 Nov 2019 12:59:26 +0000 (12:59 +0000)
committerUlf Hansson <ulf.hansson@linaro.org>
Thu, 14 Nov 2019 13:57:53 +0000 (14:57 +0100)
The quirks2 are parsed and set (e.g. from DT) before the quirk for broken
HS200 is set in the driver.
The driver needs to enable just this flag, not rewrite the whole quirk set.

Fixes: 7871aa60ae00 ("mmc: sdhci-of-at91: add quirk for broken HS200")
Signed-off-by: Eugen Hristev <eugen.hristev@microchip.com>
Acked-by: Adrian Hunter <adrian.hunter@intel.com>
Cc: stable@vger.kernel.org
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
drivers/mmc/host/sdhci-of-at91.c

index e7d1920729fbc98aa3fe527e3e2fce5a28379af5..0ae986c42bc82440bd2eaef56d8eb7906bb322bc 100644 (file)
@@ -358,7 +358,7 @@ static int sdhci_at91_probe(struct platform_device *pdev)
        pm_runtime_use_autosuspend(&pdev->dev);
 
        /* HS200 is broken at this moment */
-       host->quirks2 = SDHCI_QUIRK2_BROKEN_HS200;
+       host->quirks2 |= SDHCI_QUIRK2_BROKEN_HS200;
 
        ret = sdhci_add_host(host);
        if (ret)