diff options
author | 2024-04-26 06:47:09 +0200 | |
---|---|---|
committer | 2024-04-26 06:47:09 +0200 | |
commit | 0b7b565d106e7ca4959092973b885b21a1e0ba4b (patch) | |
tree | 9ddb38a7f3c90fc2081e0717437a40e251e5eefb | |
parent | mmc: atmel-mci: Replace platform device pointer by generic one (diff) | |
parent | mmc: moxart: fix handling of sgm->consumed, otherwise WARN_ON triggers (diff) | |
download | wireguard-linux-0b7b565d106e7ca4959092973b885b21a1e0ba4b.tar.xz wireguard-linux-0b7b565d106e7ca4959092973b885b21a1e0ba4b.zip |
mmc: Merge branch fixes into next
Merge the mmc fixes for v6.9-rc[n] into the next branch, to allow them to
get tested together with the new mmc changes that are targeted for v6.10.
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
-rw-r--r-- | drivers/mmc/host/moxart-mmc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mmc/host/moxart-mmc.c b/drivers/mmc/host/moxart-mmc.c index b88d6dec209f..9a5f75163aca 100644 --- a/drivers/mmc/host/moxart-mmc.c +++ b/drivers/mmc/host/moxart-mmc.c @@ -300,6 +300,7 @@ static void moxart_transfer_pio(struct moxart_host *host) remain = sgm->length; if (remain > host->data_len) remain = host->data_len; + sgm->consumed = 0; if (data->flags & MMC_DATA_WRITE) { while (remain > 0) { |