diff options
Diffstat (limited to 'cpu/pxa/mmc.c')
| -rw-r--r-- | cpu/pxa/mmc.c | 6 | 
1 files changed, 4 insertions, 2 deletions
| diff --git a/cpu/pxa/mmc.c b/cpu/pxa/mmc.c index 4495a808f..2c86a01a0 100644 --- a/cpu/pxa/mmc.c +++ b/cpu/pxa/mmc.c @@ -535,8 +535,10 @@ 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) ", +		mmc_dev.lba, +		mmc_dev.blksz, +		mmc_dev.lba * mmc_dev.blksz / (1024 * 1024));  }  int |