Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4696d8b1 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "mmc: sdhci: Fix handling of ADMA error interrupt bit."

parents 20e6f257 ba3b2dd1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3289,7 +3289,7 @@ static int sdhci_get_data_err(struct sdhci_host *host, u32 intmask)
	} else if (intmask & (SDHCI_INT_DATA_END_BIT | SDHCI_INT_DATA_CRC)) {
		host->mmc->err_stats[MMC_ERR_DAT_CRC]++;
		return -EILSEQ;
	} else if (intmask & MMC_ERR_ADMA) {
	} else if (intmask & SDHCI_INT_ADMA_ERROR) {
		host->mmc->err_stats[MMC_ERR_ADMA]++;
		return -EIO;
	}