summaryrefslogtreecommitdiffstats
path: root/drivers/mmc
diff options
context:
space:
mode:
authorUlf Hansson <ulf.hansson@linaro.org>2022-09-28 10:09:29 +0200
committerUlf Hansson <ulf.hansson@linaro.org>2022-09-28 10:09:29 +0200
commit178422c27badb8eee5edfae3f6cc3048cc140364 (patch)
tree3b29c7d85d52b81c4fcc7d8e80b223d06b9b49f3 /drivers/mmc
parentmmc: sdhci: Centralize CMD and DATA reset handling (diff)
parentmmc: hsq: Fix data stomping during mmc recovery (diff)
downloadlinux-178422c27badb8eee5edfae3f6cc3048cc140364.tar.xz
linux-178422c27badb8eee5edfae3f6cc3048cc140364.zip
mmc: Merge branch fixes into next
Merge the mmc fixes for v6.0rc[n] into the next branch, to allow them to get tested together with the new mmc changes that are targeted for v6.1. Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Diffstat (limited to 'drivers/mmc')
-rw-r--r--drivers/mmc/host/mmc_hsq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/host/mmc_hsq.c b/drivers/mmc/host/mmc_hsq.c
index a5e05ed0fda3..9d35453e7371 100644
--- a/drivers/mmc/host/mmc_hsq.c
+++ b/drivers/mmc/host/mmc_hsq.c
@@ -34,7 +34,7 @@ static void mmc_hsq_pump_requests(struct mmc_hsq *hsq)
spin_lock_irqsave(&hsq->lock, flags);
/* Make sure we are not already running a request now */
- if (hsq->mrq) {
+ if (hsq->mrq || hsq->recovery_halt) {
spin_unlock_irqrestore(&hsq->lock, flags);
return;
}