diff options
author | Marcel Ziswiler <marcel@ziswiler.com> | 2008-07-11 01:09:59 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-07-13 15:06:52 +0200 |
commit | 6b760189d77f001684e3160b355c185ca3804961 (patch) | |
tree | 2a4bdf961587385ae97161c2364a7a855d486a20 /cpu/pxa/mmc.c | |
parent | c15947d6ce0d59925c97fdfac692476af6e262d0 (diff) | |
download | u-boot-imx-6b760189d77f001684e3160b355c185ca3804961.zip u-boot-imx-6b760189d77f001684e3160b355c185ca3804961.tar.gz u-boot-imx-6b760189d77f001684e3160b355c185ca3804961.tar.bz2 |
Fix build time warnings in function mmc_decode_csd()
Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
Diffstat (limited to 'cpu/pxa/mmc.c')
-rw-r--r-- | cpu/pxa/mmc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu/pxa/mmc.c b/cpu/pxa/mmc.c index 4495a80..8c529a3 100644 --- a/cpu/pxa/mmc.c +++ b/cpu/pxa/mmc.c @@ -535,7 +535,7 @@ 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, + printf("Detected: %lu blocks of %lu bytes (%luMB) ", (unsigned long)mmc_dev.lba, mmc_dev.blksz, mmc_dev.lba * mmc_dev.blksz / (1024 * 1024)); } |