diff options
Diffstat (limited to 'common/cmd_mmc.c')
-rw-r--r-- | common/cmd_mmc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/cmd_mmc.c b/common/cmd_mmc.c index d82f2db..85f0200 100644 --- a/common/cmd_mmc.c +++ b/common/cmd_mmc.c @@ -113,7 +113,7 @@ static void print_mmcinfo(struct mmc *mmc) printf("High Capacity: %s\n", mmc->high_capacity ? "Yes" : "No"); puts("Capacity: "); - print_size(mmc->capacity, "\n"); + printf("%lld Bytes\n", mmc->capacity); printf("Bus Width: %d-bit %s\n", mmc->bus_width, (mmc->card_caps & EMMC_MODE_4BIT_DDR || |