diff options
author | Stefan Roese <sr@denx.de> | 2008-07-10 10:10:54 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-07-10 10:46:13 +0200 |
commit | e870690bdca154943ecadd5212d2d59c1b9d391b (patch) | |
tree | d4772ad4250e78550ec60d1dfb4fcc2362c63a4c /drivers/mtd/nand/nand.c | |
parent | 10943c9afa25694bd9999461f4e9e50ce22fff2b (diff) | |
download | u-boot-imx-e870690bdca154943ecadd5212d2d59c1b9d391b.zip u-boot-imx-e870690bdca154943ecadd5212d2d59c1b9d391b.tar.gz u-boot-imx-e870690bdca154943ecadd5212d2d59c1b9d391b.tar.bz2 |
MTD/NAND: Fix printf format warning in nand code
This patch fixes NAND related printf format warning. Those warnings are
now visible since patch dc4b0b38d4aadf08826f6c31270f1eecd27964fd
[Fix printf errors.] by Andrew Klossner has been applied. Thanks, this is
really helpful.
Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'drivers/mtd/nand/nand.c')
-rw-r--r-- | drivers/mtd/nand/nand.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/nand/nand.c b/drivers/mtd/nand/nand.c index 27b5792..e44470e 100644 --- a/drivers/mtd/nand/nand.c +++ b/drivers/mtd/nand/nand.c @@ -70,7 +70,7 @@ void nand_init(void) if (nand_curr_device == -1) nand_curr_device = i; } - printf("%lu MiB\n", size / (1024 * 1024)); + printf("%u MiB\n", size / (1024 * 1024)); #ifdef CFG_NAND_SELECT_DEVICE /* |