summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Shiyan <shc_work@mail.ru>2013-05-28 21:27:56 +0400
committerSascha Hauer <s.hauer@pengutronix.de>2013-05-31 08:53:51 +0200
commit81118f1b7baa7de38172d0b372c88aee14f93aae (patch)
treec450723001b777048635904a23512d958d656ba0
parentbd43d2fddc883d542b7133fa9e83497fdef03b51 (diff)
downloadbarebox-81118f1b7baa7de38172d0b372c88aee14f93aae.tar.gz
barebox-81118f1b7baa7de38172d0b372c88aee14f93aae.tar.xz
ARM: Using unsigned specifiers for unsigned arguments for printf
Signed-off-by: Alexander Shiyan <shc_work@mail.ru> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
-rw-r--r--arch/arm/lib/bootm.c2
-rw-r--r--arch/arm/lib/module.c6
2 files changed, 4 insertions, 4 deletions
diff --git a/arch/arm/lib/bootm.c b/arch/arm/lib/bootm.c
index e7a0625d3b..0d3b59ecc8 100644
--- a/arch/arm/lib/bootm.c
+++ b/arch/arm/lib/bootm.c
@@ -326,7 +326,7 @@ static int aimage_load_resource(int fd, struct resource *r, void* buf, int ps)
ret = read_full(fd, buf, to_read);
if (ret < 0)
- printf("could not read dummy %d\n", to_read);
+ printf("could not read dummy %u\n", to_read);
return ret;
}
diff --git a/arch/arm/lib/module.c b/arch/arm/lib/module.c
index 643a8bed0e..be7965d59c 100644
--- a/arch/arm/lib/module.c
+++ b/arch/arm/lib/module.c
@@ -34,7 +34,7 @@ apply_relocate(Elf32_Shdr *sechdrs, const char *strtab, unsigned int symindex,
offset = ELF32_R_SYM(rel->r_info);
if (offset < 0 || offset > (symsec->sh_size / sizeof(Elf32_Sym))) {
- printf("%s: bad relocation, section %d reloc %d\n",
+ printf("%s: bad relocation, section %u reloc %u\n",
module->name, relindex, i);
return -ENOEXEC;
}
@@ -43,7 +43,7 @@ apply_relocate(Elf32_Shdr *sechdrs, const char *strtab, unsigned int symindex,
if (rel->r_offset < 0 || rel->r_offset > dstsec->sh_size - sizeof(u32)) {
printf("%s: out of bounds relocation, "
- "section %d reloc %d offset %d size %d\n",
+ "section %u reloc %u offset %d size %d\n",
module->name, relindex, i, rel->r_offset,
dstsec->sh_size);
return -ENOEXEC;
@@ -68,7 +68,7 @@ apply_relocate(Elf32_Shdr *sechdrs, const char *strtab, unsigned int symindex,
offset <= (s32)0xfe000000 ||
offset >= (s32)0x02000000) {
printf("%s: relocation out of range, section "
- "%d reloc %d sym '%s'\n", module->name,
+ "%u reloc %u sym '%s'\n", module->name,
relindex, i, strtab + sym->st_name);
return -ENOEXEC;
}