diff options
author | Al Cooper <alcooperx@gmail.com> | 2021-03-25 15:28:34 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2021-05-11 14:47:26 +0200 |
commit | c753c1a77e7a69b2033815cb308795e88c3061c4 (patch) | |
tree | 3ccd23b3ba06a5715852ba7a0ba283d914406de5 /drivers/mmc | |
parent | fdd04d1c8336138791e7298dfcb013343ddc60bb (diff) | |
download | kernel_replicant_linux-c753c1a77e7a69b2033815cb308795e88c3061c4.tar.gz kernel_replicant_linux-c753c1a77e7a69b2033815cb308795e88c3061c4.tar.bz2 kernel_replicant_linux-c753c1a77e7a69b2033815cb308795e88c3061c4.zip |
mmc: sdhci-brcmstb: Remove CQE quirk
[ Upstream commit f0bdf98fab058efe7bf49732f70a0f26d1143154 ]
Remove the CQHCI_QUIRK_SHORT_TXFR_DESC_SZ quirk because the
latest chips have this fixed and earlier chips have other
CQE problems that prevent the feature from being enabled.
Signed-off-by: Al Cooper <alcooperx@gmail.com>
Acked-by: Florian Fainelli <f.fainelli@gmail.com>
Link: https://lore.kernel.org/r/20210325192834.42955-1-alcooperx@gmail.com
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'drivers/mmc')
-rw-r--r-- | drivers/mmc/host/sdhci-brcmstb.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/mmc/host/sdhci-brcmstb.c b/drivers/mmc/host/sdhci-brcmstb.c index f9780c65ebe9..f24623aac2db 100644 --- a/drivers/mmc/host/sdhci-brcmstb.c +++ b/drivers/mmc/host/sdhci-brcmstb.c @@ -199,7 +199,6 @@ static int sdhci_brcmstb_add_host(struct sdhci_host *host, if (dma64) { dev_dbg(mmc_dev(host->mmc), "Using 64 bit DMA\n"); cq_host->caps |= CQHCI_TASK_DESC_SZ_128; - cq_host->quirks |= CQHCI_QUIRK_SHORT_TXFR_DESC_SZ; } ret = cqhci_init(cq_host, host->mmc, dma64); |