From 305e0b999a7d452a845709d5558c17a31afe178c Mon Sep 17 00:00:00 2001 From: Stefan Tauner Date: Wed, 17 Jul 2013 23:46:44 +0000 Subject: Uintptr_t-ify map_flash_region functions Unsigned long is not the right type for manipulating pointer values. Since C99 there are suitable unsigned and signed types available, namely uintptr_t and intptr_t respectively. Use them in functions assigned to programmers' map_flash_region fields and their callers where applicable. This patch also changes the display width of all associated address values in physmap.c to 16/8 hex characters depending on the actual size by introducing a macro PRIxPTR_WIDTH and exploiting printf's * field width specifier. Corresponding to flashrom svn r1701. Signed-off-by: Stefan Tauner Acked-by: Carl-Daniel Hailfinger --- programmer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'programmer.c') diff --git a/programmer.c b/programmer.c index 3b4def0..bf7dca1 100644 --- a/programmer.c +++ b/programmer.c @@ -28,7 +28,7 @@ int noop_shutdown(void) } /* Fallback map() for programmers which don't need special handling */ -void *fallback_map(const char *descr, unsigned long phys_addr, size_t len) +void *fallback_map(const char *descr, uintptr_t phys_addr, size_t len) { /* FIXME: Should return phys_addr. */ return NULL; -- cgit v1.1