1
0
Fork 0

Merge branch 'msm-mmc_sdcc' of git://codeaurora.org/quic/kernel/dwalker/linux-msm

* 'msm-mmc_sdcc' of git://codeaurora.org/quic/kernel/dwalker/linux-msm:
  msm_sdcc.c: missing brackets in msmsdcc_resume()
hifive-unleashed-5.1
Linus Torvalds 2010-03-12 16:21:24 -08:00
commit 11bfe2ea73
1 changed files with 1 additions and 3 deletions

View File

@ -1250,9 +1250,7 @@ msmsdcc_resume(struct platform_device *dev)
if (mmc->card && mmc->card->type != MMC_TYPE_SDIO)
mmc_resume_host(mmc);
if (host->stat_irq)
enable_irq(host->stat_irq);
else if (host->stat_irq)
if (host->stat_irq)
enable_irq(host->stat_irq);
}
return 0;