diff options
author | Roel Kluin <roel.kluin@gmail.com> | 2010-01-17 20:25:36 +0100 |
---|---|---|
committer | Daniel Walker <dwalker@codeaurora.org> | 2010-01-20 21:29:56 +0100 |
commit | 5b8a2fb34f5670b1f07483bfa40de9ce539dbdb2 (patch) | |
tree | b996e6c1f34718f0581a61f6bbbc08c925bff818 /drivers/mmc | |
parent | Linux 2.6.33-rc2 (diff) | |
download | linux-5b8a2fb34f5670b1f07483bfa40de9ce539dbdb2.tar.xz linux-5b8a2fb34f5670b1f07483bfa40de9ce539dbdb2.zip |
msm_sdcc.c: missing brackets in msmsdcc_resume()
Since the curly brackets were missing the test and enable_irq(),
if true, occurred twice.
Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
Diffstat (limited to 'drivers/mmc')
-rw-r--r-- | drivers/mmc/host/msm_sdcc.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/mmc/host/msm_sdcc.c b/drivers/mmc/host/msm_sdcc.c index b31946e0b4ca..4c068e5fe6b2 100644 --- a/drivers/mmc/host/msm_sdcc.c +++ b/drivers/mmc/host/msm_sdcc.c @@ -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; |