>From fa357144df43e6c1a9e5e36af497c53437cd41e1 Mon Sep 17 00:00:00 2001
From: Zhangfei Gao <[email protected]>
Date: Mon, 20 Sep 2010 15:12:26 -0400
Subject: [PATCH 3/4] mmc: fix init f_min

Change-Id: I7fab1a1a162d9f26fc92c497078f26912c04a3fc

Signed-off-by: Zhangfei Gao <[email protected]>
---
 drivers/mmc/core/core.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/mmc/core/core.c b/drivers/mmc/core/core.c
index 5db49b1..9114c87 100644
--- a/drivers/mmc/core/core.c
+++ b/drivers/mmc/core/core.c
@@ -910,9 +910,9 @@ static void mmc_power_up(struct mmc_host *host)
        if (host->f_min > 400000) {
                pr_warning("%s: Minimum clock frequency too high for "
                                "identification mode\n", mmc_hostname(host));
-               host->ios.clock = host->f_min;
-       } else
                host->ios.clock = 400000;
+       } else
+               host->ios.clock = host->f_min;

        host->ios.power_mode = MMC_POWER_ON;
        mmc_set_ios(host);
-- 
1.7.0.4

Attachment: 0003-mmc-fix-init-f_min.patch
Description: Binary data

Reply via email to