aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mmc/host/sdhci.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/mmc/host/sdhci.c')
-rw-r--r--drivers/mmc/host/sdhci.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/mmc/host/sdhci.c b/drivers/mmc/host/sdhci.c
index cc00bed3e200..ec3eb30845c7 100644
--- a/drivers/mmc/host/sdhci.c
+++ b/drivers/mmc/host/sdhci.c
@@ -3016,7 +3016,8 @@ int sdhci_add_host(struct sdhci_host *host)
3016 /* SD3.0: SDR104 is supported so (for eMMC) the caps2 3016 /* SD3.0: SDR104 is supported so (for eMMC) the caps2
3017 * field can be promoted to support HS200. 3017 * field can be promoted to support HS200.
3018 */ 3018 */
3019 mmc->caps2 |= MMC_CAP2_HS200; 3019 if (!(host->quirks2 & SDHCI_QUIRK2_BROKEN_HS200))
3020 mmc->caps2 |= MMC_CAP2_HS200;
3020 } else if (caps[1] & SDHCI_SUPPORT_SDR50) 3021 } else if (caps[1] & SDHCI_SUPPORT_SDR50)
3021 mmc->caps |= MMC_CAP_UHS_SDR50; 3022 mmc->caps |= MMC_CAP_UHS_SDR50;
3022 3023