[PATCH 4/5] Use %p in format for pointers
Loïc Minier
loic.minier at linaro.org
Thu Oct 13 18:06:40 EDT 2011
res->start and res->size are resource_type_t which is a phys_addr_t
which itself could someday be a 64-bits pointer (for instance when
building sandbox on a 64-bits host). Instead of hardcoding %08x as a
format for pointers, use the %p format.
Signed-off-by: Loïc Minier <loic.minier at linaro.org>
---
drivers/base/driver.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/base/driver.c b/drivers/base/driver.c
index 0b80103..515ff8d 100644
--- a/drivers/base/driver.c
+++ b/drivers/base/driver.c
@@ -349,8 +349,8 @@ static int do_devinfo(struct command *cmdtp, int argc, char *argv[])
printf("num : %d\n", i);
if (res->name)
printf("name : %s\n", res->name);
- printf("start : 0x%08x\nsize : 0x%08x\n",
- res->start, res->size);
+ printf("start : 0x%p\nsize : 0x%p\n",
+ (void *)res->start, (void *)res->size);
}
printf("driver: %s\n\n", dev->driver ?
--
1.7.5.4
More information about the barebox
mailing list