diff options
author | Pierre Ossman <drzeus@drzeus.cx> | 2009-02-02 21:13:49 +0100 |
---|---|---|
committer | Pierre Ossman <drzeus@drzeus.cx> | 2009-02-18 06:36:22 +0100 |
commit | 86a6a8749d5b8fd5c2b544fe9fd11101e3d0550f (patch) | |
tree | 2433073578c513875bd69d9edb6f72c3fa846b97 /drivers/mmc/host/sdhci.c | |
parent | 444122fd58fdc83c96877a92b3f6288cafddb08d (diff) |
Revert "sdhci: force high speed capability on some controllers"
This reverts commit a4b76193774b463b922cab2f92450efb20d29ef0.
It turned out that the controller had problem running at the
higher speed, so go back to trusting the hardware capability
bits.
Signed-off-by: Pierre Ossman <drzeus@drzeus.cx>
Diffstat (limited to 'drivers/mmc/host/sdhci.c')
-rw-r--r-- | drivers/mmc/host/sdhci.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/mmc/host/sdhci.c b/drivers/mmc/host/sdhci.c index 6b2d1f99af6..24d7414a331 100644 --- a/drivers/mmc/host/sdhci.c +++ b/drivers/mmc/host/sdhci.c @@ -1636,8 +1636,7 @@ int sdhci_add_host(struct sdhci_host *host) mmc->f_max = host->max_clk; mmc->caps = MMC_CAP_4_BIT_DATA | MMC_CAP_SDIO_IRQ; - if ((caps & SDHCI_CAN_DO_HISPD) || - (host->quirks & SDHCI_QUIRK_FORCE_HIGHSPEED)) + if (caps & SDHCI_CAN_DO_HISPD) mmc->caps |= MMC_CAP_SD_HIGHSPEED; mmc->ocr_avail = 0; |