diff options
author | Chaotian Jing <chaotian.jing@mediatek.com> | 2016-05-19 16:47:42 +0800 |
---|---|---|
committer | Haibo Chen <haibo.chen@nxp.com> | 2016-06-29 13:51:54 +0800 |
commit | 801b83998317f54e2233e24ff063ec57a3085bd4 (patch) | |
tree | 5c9d8aa175048559440219237b58fadae3f48f12 | |
parent | 38ed99ec9239242860fa071536ada49e9e89203f (diff) |
mmc: mmc: fix switch timeout issue caused by jiffies precision
with CONFIG_HZ=100, the precision of jiffies is 10ms, and the
generic_cmd6_time of some card is also 10ms. then, may be current
time is only 5ms, but already timed out caused by jiffies precision.
Signed-off-by: Chaotian Jing <chaotian.jing@mediatek.com>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
(cherry picked from commit 8bcce64faaaf07165453e6600ae9ffb887e79b1a)
Signed-off-by: Haibo Chen <haibo.chen@nxp.com>
(cherry picked from commit 38f639884a2cfd65cbe29ac2fbfe4ab3fcb1f1af)
-rw-r--r-- | drivers/mmc/core/mmc_ops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/core/mmc_ops.c b/drivers/mmc/core/mmc_ops.c index 72f6785e7014..cd5280f686d7 100644 --- a/drivers/mmc/core/mmc_ops.c +++ b/drivers/mmc/core/mmc_ops.c @@ -549,7 +549,7 @@ int __mmc_switch(struct mmc_card *card, u8 set, u8 index, u8 value, timeout_ms = MMC_OPS_TIMEOUT_MS; /* Must check status to be sure of no errors. */ - timeout = jiffies + msecs_to_jiffies(timeout_ms); + timeout = jiffies + msecs_to_jiffies(timeout_ms) + 1; do { if (send_status) { /* |