[U-Boot] [PATCH] mmc: show mmc capacity using print_size
Minkyu Kang
mk7.kang at samsung.com
Tue Jan 4 12:04:19 CET 2011
Signed-off-by: Minkyu Kang <mk7.kang at samsung.com>
---
common/cmd_mmc.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/common/cmd_mmc.c b/common/cmd_mmc.c
index 4323f76..6166749 100644
--- a/common/cmd_mmc.c
+++ b/common/cmd_mmc.c
@@ -104,7 +104,8 @@ static void print_mmcinfo(struct mmc *mmc)
(mmc->version >> 4) & 0xf, mmc->version & 0xf);
printf("High Capacity: %s\n", mmc->high_capacity ? "Yes" : "No");
- printf("Capacity: %lld\n", mmc->capacity);
+ puts("Capacity: ");
+ print_size(mmc->capacity, "\n");
printf("Bus Width: %d-bit\n", mmc->bus_width);
}
--
1.7.1
More information about the U-Boot
mailing list