aboutsummaryrefslogtreecommitdiff
path: root/drivers/mfd/glamo
diff options
context:
space:
mode:
authorAndy Green <andy@openmoko.com>2008-12-01 01:26:34 +0000
committerAndy Green <agreen@pads.home.warmcat.com>2008-12-01 01:26:34 +0000
commit4332cd701590b5753ef04d9a898be4dc3ff111fb (patch)
tree0807656269b590481630ec91fa27e5fdb4d11dd6 /drivers/mfd/glamo
parentfd183acb1316184238b6e7d016ce005b38c6f9ff (diff)
fix-glamo-mmc-reduce-insanity-timeout.patch
Nothing on the card can really take 3s.. reduce to 300ms Signed-off-by: Andy Green <andy@openmoko.com>
Diffstat (limited to 'drivers/mfd/glamo')
-rw-r--r--drivers/mfd/glamo/glamo-mci.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mfd/glamo/glamo-mci.c b/drivers/mfd/glamo/glamo-mci.c
index e5bef30463b..b8674382cfe 100644
--- a/drivers/mfd/glamo/glamo-mci.c
+++ b/drivers/mfd/glamo/glamo-mci.c
@@ -579,8 +579,8 @@ static void glamo_mci_send_request(struct mmc_host *mmc)
u16 * reg_resp = (u16 *)(host->base + GLAMO_REG_MMC_CMD_RSP1);
u16 status;
int n;
- int timeout = 10000000;
- int insanity_timeout = 10000000;
+ int timeout = 1000000;
+ int insanity_timeout = 1000000;
if (host->suspending) {
dev_err(&host->pdev->dev, "IGNORING glamo_mci_send_request while "