summaryrefslogtreecommitdiffstats
path: root/drivers/mtd/cfi_flash.c
diff options
context:
space:
mode:
authorMarek Vasut <marek.vasut@gmail.com>2011-10-21 14:17:05 +0000
committerWolfgang Denk <wd@denx.de>2011-10-27 23:54:04 +0200
commit31d34143bbe3f5c98fe7b6fb8f23e0b40b3d8b21 (patch)
tree0ef74be0b715b8d6bc23c6e26be6c54949fd0693 /drivers/mtd/cfi_flash.c
parent68da5b1911603957fbd1807eb392a0599a627df3 (diff)
downloadblackbird-obmc-uboot-31d34143bbe3f5c98fe7b6fb8f23e0b40b3d8b21.tar.gz
blackbird-obmc-uboot-31d34143bbe3f5c98fe7b6fb8f23e0b40b3d8b21.zip
GCC4.6: Squash warning in cfi_flash.c
cfi_flash.c: In function 'flash_protect_default': cfi_flash.c:2152: warning: format '%08x' expects type 'unsigned int', but argument 2 has type 'ulong' cfi_flash.c:2152: warning: format '%08x' expects type 'unsigned int', but argument 3 has type 'long unsigned int' Signed-off-by: Marek Vasut <marek.vasut@gmail.com> Cc: Wolfgang Denk <wd@denx.de> Cc: Simon Glass <sjg@chromium.org> Cc: Mike Frysinger <vapier@gentoo.org> Cc: Scott Wood <scottwood@freescale.com>
Diffstat (limited to 'drivers/mtd/cfi_flash.c')
-rw-r--r--drivers/mtd/cfi_flash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/cfi_flash.c b/drivers/mtd/cfi_flash.c
index ac91dfd953..5494bcffa7 100644
--- a/drivers/mtd/cfi_flash.c
+++ b/drivers/mtd/cfi_flash.c
@@ -2149,7 +2149,7 @@ void flash_protect_default(void)
#if defined(CONFIG_SYS_FLASH_AUTOPROTECT_LIST)
for (i = 0; i < (sizeof(apl) / sizeof(struct apl_s)); i++) {
- debug("autoprotecting from %08x to %08x\n",
+ debug("autoprotecting from %08lx to %08lx\n",
apl[i].start, apl[i].start + apl[i].size - 1);
flash_protect(FLAG_PROTECT_SET,
apl[i].start,
OpenPOWER on IntegriCloud