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

Commit 545a357b 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: Ignore data end bit error interrupts."

parents fdf0f95b a2b0eb10
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -3012,7 +3012,8 @@ static void sdhci_data_irq(struct sdhci_host *host, u32 intmask)
			host->ops->adma_workaround(host, intmask);
	}
	if (host->data->error) {
		if (intmask & (SDHCI_INT_DATA_CRC | SDHCI_INT_DATA_TIMEOUT)) {
		if (intmask & (SDHCI_INT_DATA_CRC | SDHCI_INT_DATA_TIMEOUT
					| SDHCI_INT_DATA_END_BIT)) {
			command = SDHCI_GET_CMD(sdhci_readw(host,
							    SDHCI_COMMAND));
			if ((command != MMC_SEND_TUNING_BLOCK_HS200) &&