[U-Boot-Users] [PATCH] Fix build time warnings in function mmc_decode_csd.

11 Jul
2008
11 Jul
'08
1:27 a.m.
--- cpu/pxa/mmc.c | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/cpu/pxa/mmc.c b/cpu/pxa/mmc.c index 4495a80..97ac4a5 100644 --- a/cpu/pxa/mmc.c +++ b/cpu/pxa/mmc.c @@ -535,8 +535,9 @@ static void mmc_decode_csd(uint32_t * resp) mmc_dev.removable = 0; mmc_dev.block_read = mmc_bread;
- printf("Detected: %u blocks of %u bytes (%uMB) ", mmc_dev.lba, - mmc_dev.blksz, mmc_dev.lba * mmc_dev.blksz / (1024 * 1024)); + printf("Detected: %lu blocks of %lu bytes (%luMB) ", + (unsigned long)mmc_dev.lba, mmc_dev.blksz, + mmc_dev.lba * mmc_dev.blksz / (1024 * 1024)); }
int
--
1.5.4.1
6145
Age (days ago)
6145
Last active (days ago)
0 comments
1 participants
participants (1)
-
Marcel Ziswiler