aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mmc
diff options
context:
space:
mode:
authorPierre Ossman <drzeus@drzeus.cx>2007-08-07 14:06:18 +0200
committerPierre Ossman <drzeus@drzeus.cx>2007-09-23 21:15:45 +0200
commitce252edd869ba1fee6a9a6f83e20f349d4c4d669 (patch)
tree8cf4b84a95538e7f8a17d200791aa3146b41362b /drivers/mmc
parentsdio: enable wide bus mode (diff)
downloadlinux-dev-ce252edd869ba1fee6a9a6f83e20f349d4c4d669.tar.xz
linux-dev-ce252edd869ba1fee6a9a6f83e20f349d4c4d669.zip
mmc: fix incorrect divisor in debug output
Signed-off-by: Pierre Ossman <drzeus@drzeus.cx>
Diffstat (limited to 'drivers/mmc')
-rw-r--r--drivers/mmc/core/core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/core/core.c b/drivers/mmc/core/core.c
index d1e4b0849e39..07c03cb677b6 100644
--- a/drivers/mmc/core/core.c
+++ b/drivers/mmc/core/core.c
@@ -121,7 +121,7 @@ mmc_start_request(struct mmc_host *host, struct mmc_request *mrq)
"tsac %d ms nsac %d\n",
mmc_hostname(host), mrq->data->blksz,
mrq->data->blocks, mrq->data->flags,
- mrq->data->timeout_ns / 10000000,
+ mrq->data->timeout_ns / 1000000,
mrq->data->timeout_clks);
}