mmc: sdhci: Ignore data end bit error interrupts.
Avoid printing of the error messages and register dumps, incase of data endbit errors like other data errors. Change-Id: If8ed082cc97a895cfbf959201c579914d5768b23 Signed-off-by: Pavan Anamula <pavana@codeaurora.org> Signed-off-by: Veerabhadrarao Badiganti <vbadigan@codeaurora.org>
This commit is contained in:
parent
6137652043
commit
fa5e1372df
1 changed files with 2 additions and 1 deletions
|
@ -2997,7 +2997,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) &&
|
||||
|
|
Loading…
Add table
Reference in a new issue