Commit 64973023df4f31e72ecc56005f123da5841f7066

Authored by Lubomir Rintel
Committed by Pantelis Antoniou
1 parent 3fe3b4fb1c

bcm2835_sdhci: Add SDHCI_QUIRK_NO_HISPD_BIT flag

Seems like the controller doesn't support the flag. None of the hi-speed cards
I've tried could be read, while they successfully worked with the quirk enabled.

Signed-off-by: Lubomir Rintel <lkundrak@v3.sk>
Tested-by: Stephen Warren <swarren@wwwdotorg.org>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

drivers/mmc/bcm2835_sdhci.c
... ... @@ -179,7 +179,7 @@
179 179 host->name = "bcm2835_sdhci";
180 180 host->ioaddr = (void *)regbase;
181 181 host->quirks = SDHCI_QUIRK_BROKEN_VOLTAGE | SDHCI_QUIRK_BROKEN_R1B |
182   - SDHCI_QUIRK_WAIT_SEND_CMD;
  182 + SDHCI_QUIRK_WAIT_SEND_CMD | SDHCI_QUIRK_NO_HISPD_BIT;
183 183 host->voltages = MMC_VDD_32_33 | MMC_VDD_33_34 | MMC_VDD_165_195;
184 184 host->ops = &bcm2835_ops;
185 185