[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1233819117-7102-1-git-send-email-cooloney@kernel.org>
Date: Thu, 5 Feb 2009 15:31:57 +0800
From: Bryan Wu <cooloney@...nel.org>
To: drzeus-mmc@...eus.cx
Cc: linux-kernel@...r.kernel.org, Yi Li <yi.li@...log.com>,
Bryan Wu <cooloney@...nel.org>
Subject: [PATCH] MMC: fix bug - SDHC card capacity not correct
From: Yi Li <yi.li@...log.com>
Signed-off-by: Yi Li <yi.li@...log.com>
Signed-off-by: Bryan Wu <cooloney@...nel.org>
---
drivers/mmc/card/block.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/mmc/card/block.c b/drivers/mmc/card/block.c
index 45b1f43..513eb09 100644
--- a/drivers/mmc/card/block.c
+++ b/drivers/mmc/card/block.c
@@ -584,7 +584,7 @@ static int mmc_blk_probe(struct mmc_card *card)
if (err)
goto out;
- string_get_size(get_capacity(md->disk) << 9, STRING_UNITS_2,
+ string_get_size((u64)get_capacity(md->disk) << 9, STRING_UNITS_2,
cap_str, sizeof(cap_str));
printk(KERN_INFO "%s: %s %s %s %s\n",
md->disk->disk_name, mmc_card_id(card), mmc_card_name(card),
--
1.5.6.3
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists