]> git.proxmox.com Git - mirror_ubuntu-kernels.git/commit
mmc: sdhci-of-esdhc: fix quirk to ignore command inhibit for data
authorGeorgii Kruglov <georgy.kruglov@yandex.ru>
Tue, 21 Mar 2023 20:37:15 +0000 (23:37 +0300)
committerStefan Bader <stefan.bader@canonical.com>
Fri, 7 Jul 2023 10:16:50 +0000 (12:16 +0200)
commitef42c18f7e3317c6782fa55990dd186e7763d3ed
treeb9b474acee5fc9317ddbdeeef58d18daa481bd54
parent8bb34edd82d4d377c5e6d5114b84000e2e3749d4
mmc: sdhci-of-esdhc: fix quirk to ignore command inhibit for data

BugLink: https://bugs.launchpad.net/bugs/2025067
[ Upstream commit 0dd8316037a2a6d85b2be208bef9991de7b42170 ]

If spec_reg is equal to 'SDHCI_PRESENT_STATE', esdhc_readl_fixup()
fixes up register value and returns it immediately. As a result, the
further block
(spec_reg == SDHCI_PRESENT_STATE)
    &&(esdhc->quirk_ignore_data_inhibit == true),
is never executed.

The patch merges the second block into the first one.

Found by Linux Verification Center (linuxtesting.org) with SVACE.

Fixes: 1f1929f3f2fa ("mmc: sdhci-of-esdhc: add quirk to ignore command inhibit for data")
Signed-off-by: Georgii Kruglov <georgy.kruglov@yandex.ru>
Acked-by: Adrian Hunter <adrian.hunter@intel.com>
Link: https://lore.kernel.org/r/20230321203715.3975-1-georgy.kruglov@yandex.ru
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Signed-off-by: Kamal Mostafa <kamal@canonical.com>
Signed-off-by: Stefan Bader <stefan.bader@canonical.com>
drivers/mmc/host/sdhci-of-esdhc.c