diff mbox

OMAP HSMMC: Fix a bug in card remove scenario

Message ID 40837.192.168.10.89.1270081776.squirrel@dbdmail.itg.ti.com (mailing list archive)
State New, archived
Headers show

Commit Message

Madhusudhan April 1, 2010, 12:29 a.m. UTC
None
diff mbox

Patch

diff --git a/drivers/mmc/host/omap_hsmmc.c b/drivers/mmc/host/omap_hsmmc.c
index 83f0aff..e9caf69 100644
--- a/drivers/mmc/host/omap_hsmmc.c
+++ b/drivers/mmc/host/omap_hsmmc.c
@@ -1179,15 +1179,10 @@  static void omap_hsmmc_detect(struct work_struct *work)
 		carddetect = -ENOSYS;
 	}

-	if (carddetect) {
+	if (carddetect)
 		mmc_detect_change(host->mmc, (HZ * 200) / 1000);
-	} else {
-		mmc_host_enable(host->mmc);
-		omap_hsmmc_reset_controller_fsm(host, SRD);
-		mmc_host_lazy_disable(host->mmc);
-
+	else
 		mmc_detect_change(host->mmc, (HZ * 50) / 1000);
-	}
 }

 /*