forked from pool/u-boot
Guillaume GARDET
b1b57d0d26
- Update to v2018.09 - Update to v2018.09-rc3 - Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.09 * Patches added: 0010-ARM-tegra-reserve-unmapped-RAM-so-E.patch - Update to v2018.09-rc2 - Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.09 * Patches dropped: 0010-snow-set-fdtfile.patch - Update to v2018.09-rc1 - Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.09 * Patches dropped: 0011-omap3-beagle-re-enable-EFI-support-.patch OBS-URL: https://build.opensuse.org/request/show/634923 OBS-URL: https://build.opensuse.org/package/show/hardware:boot/u-boot?expand=0&rev=26
25 lines
903 B
Diff
25 lines
903 B
Diff
From ab0f592165628a43d304106ce8892375543285d4 Mon Sep 17 00:00:00 2001
|
|
From: Guillaume GARDET <guillaume.gardet@free.fr>
|
|
Date: Mon, 9 Apr 2018 10:28:26 +0200
|
|
Subject: [PATCH] Temp workaround for Chromebook snow to avoid the 'unable to
|
|
select a mode' error
|
|
|
|
---
|
|
drivers/mmc/dw_mmc.c | 3 ++-
|
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/drivers/mmc/dw_mmc.c b/drivers/mmc/dw_mmc.c
|
|
index 13180fc0d6..a90d8e9140 100644
|
|
--- a/drivers/mmc/dw_mmc.c
|
|
+++ b/drivers/mmc/dw_mmc.c
|
|
@@ -507,7 +507,8 @@ void dwmci_setup_cfg(struct mmc_config *cfg, struct dwmci_host *host,
|
|
cfg->host_caps |= MMC_MODE_4BIT;
|
|
cfg->host_caps &= ~MMC_MODE_8BIT;
|
|
}
|
|
- cfg->host_caps |= MMC_MODE_HS | MMC_MODE_HS_52MHz;
|
|
+ /* Temp workaround for Chromebook snow to avoid the 'unable to select a mode' error */
|
|
+// cfg->host_caps |= MMC_MODE_HS | MMC_MODE_HS_52MHz;
|
|
|
|
cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
|
|
}
|