We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 660d9a9 commit 1af36b2Copy full SHA for 1af36b2
drivers/mmc/host/mxs-mmc.c
@@ -285,11 +285,11 @@ static irqreturn_t mxs_mmc_irq_handler(int irq, void *dev_id)
285
writel(stat & MXS_MMC_IRQ_BITS,
286
host->base + HW_SSP_CTRL1(host) + STMP_OFFSET_REG_CLR);
287
288
+ spin_unlock(&host->lock);
289
+
290
if ((stat & BM_SSP_CTRL1_SDIO_IRQ) && (stat & BM_SSP_CTRL1_SDIO_IRQ_EN))
291
mmc_signal_sdio_irq(host->mmc);
292
- spin_unlock(&host->lock);
-
293
if (stat & BM_SSP_CTRL1_RESP_TIMEOUT_IRQ)
294
cmd->error = -ETIMEDOUT;
295
else if (stat & BM_SSP_CTRL1_RESP_ERR_IRQ)
0 commit comments