We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c53336c commit e30be06Copy full SHA for e30be06
drivers/mmc/host/sdhci-esdhc-imx.c
@@ -1095,11 +1095,12 @@ static void sdhci_esdhc_imx_hwinit(struct sdhci_host *host)
1095
writel(readl(host->ioaddr + SDHCI_HOST_CONTROL)
1096
| ESDHC_BURST_LEN_EN_INCR,
1097
host->ioaddr + SDHCI_HOST_CONTROL);
1098
+
1099
/*
- * erratum ESDHC_FLAG_ERR004536 fix for MX6Q TO1.2 and MX6DL
1100
- * TO1.1, it's harmless for MX6SL
1101
- */
1102
- writel(readl(host->ioaddr + 0x6c) | BIT(7),
+ * erratum ESDHC_FLAG_ERR004536 fix for MX6Q TO1.2 and MX6DL
+ * TO1.1, it's harmless for MX6SL
+ */
1103
+ writel(readl(host->ioaddr + 0x6c) & ~BIT(7),
1104
host->ioaddr + 0x6c);
1105
1106
/* disable DLL_CTRL delay line settings */
0 commit comments