Skip to content
Snippets Groups Projects
Commit f9ec45d1 authored by Siva Durga Prasad Paladugu's avatar Siva Durga Prasad Paladugu Committed by Pantelis Antoniou
Browse files

mmc: Enabled quirk SDHCI_QUIRK_BROKEN_R1B


As per the below commit
"mmc: sdhci: add the quirk for broken r1b response"
(sha1: 3a638320)
need to add quirk SDHCI_QUIRK_BROKEN_R1B, when the
response type is R1b.

Signed-off-by: default avatarSiva Durga Prasad Paladugu <sivadur@xilinx.com>
Signed-off-by: default avatarMichal Simek <michal.simek@xilinx.com>
Acked-by: default avatarJagannadha Sutradharudu Teki <jaganna@xilinx.com>
Signed-off-by: default avatarPantelis Antoniou <panto@antoniou-consulting.com>
parent d3e016cc
No related branches found
No related tags found
No related merge requests found
...@@ -23,7 +23,8 @@ int zynq_sdhci_init(u32 regbase) ...@@ -23,7 +23,8 @@ int zynq_sdhci_init(u32 regbase)
host->name = "zynq_sdhci"; host->name = "zynq_sdhci";
host->ioaddr = (void *)regbase; host->ioaddr = (void *)regbase;
host->quirks = SDHCI_QUIRK_NO_CD | SDHCI_QUIRK_WAIT_SEND_CMD; host->quirks = SDHCI_QUIRK_NO_CD | SDHCI_QUIRK_WAIT_SEND_CMD |
SDHCI_QUIRK_BROKEN_R1B;
host->version = sdhci_readw(host, SDHCI_HOST_VERSION); host->version = sdhci_readw(host, SDHCI_HOST_VERSION);
host->host_caps = MMC_MODE_HC; host->host_caps = MMC_MODE_HC;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment