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 b681c4b commit f58f96cCopy full SHA for f58f96c
drivers/mmc/host/mxs-mmc.c
@@ -278,11 +278,11 @@ static irqreturn_t mxs_mmc_irq_handler(int irq, void *dev_id)
278
writel(stat & MXS_MMC_IRQ_BITS,
279
host->base + HW_SSP_CTRL1(host) + STMP_OFFSET_REG_CLR);
280
281
+ spin_unlock(&host->lock);
282
+
283
if ((stat & BM_SSP_CTRL1_SDIO_IRQ) && (stat & BM_SSP_CTRL1_SDIO_IRQ_EN))
284
mmc_signal_sdio_irq(host->mmc);
285
- spin_unlock(&host->lock);
-
286
if (stat & BM_SSP_CTRL1_RESP_TIMEOUT_IRQ)
287
cmd->error = -ETIMEDOUT;
288
else if (stat & BM_SSP_CTRL1_RESP_ERR_IRQ)
0 commit comments