diff options
author | Seungwon Jeon <tgih.jun@samsung.com> | 2012-08-01 09:30:40 +0900 |
---|---|---|
committer | Chris Ball <cjb@laptop.org> | 2012-09-04 13:58:08 -0400 |
commit | 9b2026a12511439d906a5d8d302ae285ebe7378a (patch) | |
tree | f0c80f878b8290163dd9bc0d4d3371765effdd33 /drivers/mmc | |
parent | 182c90815993452f1902837cc342ac2c05ef13f5 (diff) | |
download | linux-3.10-9b2026a12511439d906a5d8d302ae285ebe7378a.tar.gz linux-3.10-9b2026a12511439d906a5d8d302ae285ebe7378a.tar.bz2 linux-3.10-9b2026a12511439d906a5d8d302ae285ebe7378a.zip |
mmc: dw_mmc: correct mishandling error interrupt
Datasheet of SYNOPSYS mentions that DTO(Data Transfer Over) interrupt
will be raised even if some error interrupts, however it is actually
found that DTO does not occur. SYNOPSYS has confirmed this issue.
Current implementation defers the call of tasklet_schedule until DTO
when the error interrupts is happened. This patch fixes error handling.
Signed-off-by: Seungwon Jeon <tgih.jun@samsung.com>
Acked-by: Jaehoon Chung <jh80.chung@samsung.com>
Acked-by: Will Newton <will.newton@imgtec.com>
Signed-off-by: Chris Ball <cjb@laptop.org>
Diffstat (limited to 'drivers/mmc')
-rw-r--r-- | drivers/mmc/host/dw_mmc.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/mmc/host/dw_mmc.c b/drivers/mmc/host/dw_mmc.c index 7baed457dc3..1a5db20133e 100644 --- a/drivers/mmc/host/dw_mmc.c +++ b/drivers/mmc/host/dw_mmc.c @@ -1580,9 +1580,7 @@ static irqreturn_t dw_mci_interrupt(int irq, void *dev_id) host->data_status = pending; smp_wmb(); set_bit(EVENT_DATA_ERROR, &host->pending_events); - if (!(pending & (SDMMC_INT_DTO | SDMMC_INT_DCRC | - SDMMC_INT_SBE | SDMMC_INT_EBE))) - tasklet_schedule(&host->tasklet); + tasklet_schedule(&host->tasklet); } if (pending & SDMMC_INT_DATA_OVER) { |