mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
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>
This commit is contained in:
parent
68da5b1911
commit
31d34143bb
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue