From 83c3c9e1d54d880194eff3e8856ebbb38d35ba1c Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sat, 24 Oct 2015 15:27:49 -0500 Subject: cpu/amd/car: Use standard integer types in post_cache_as_ram.c Change-Id: I02c1fba5c749d5adb33ec86777bde108e587caa6 Signed-off-by: Timothy Pearson Reviewed-on: http://review.coreboot.org/12185 Reviewed-by: Paul Menzel Tested-by: build bot (Jenkins) Reviewed-by: Peter Stuge --- src/cpu/amd/car/post_cache_as_ram.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/cpu/amd/car') diff --git a/src/cpu/amd/car/post_cache_as_ram.c b/src/cpu/amd/car/post_cache_as_ram.c index 116167b418..8ec5c3b840 100644 --- a/src/cpu/amd/car/post_cache_as_ram.c +++ b/src/cpu/amd/car/post_cache_as_ram.c @@ -31,20 +31,20 @@ static size_t backup_size(void) static void memcpy_(void *d, const void *s, size_t len) { print_car_debug(" Copy [%08x-%08x] to [%08x - %08x] ... ", - (u32) s, (u32) (s + len - 1), (u32) d, (u32) (d + len - 1)); + (uint32_t) s, (uint32_t) (s + len - 1), (uint32_t) d, (uint32_t) (d + len - 1)); memcpy(d, s, len); } static void memset_(void *d, int val, size_t len) { - print_car_debug(" Fill [%08x-%08x] ... ", (u32) d, (u32) (d + len - 1)); + print_car_debug(" Fill [%08x-%08x] ... ", (uint32_t) d, (uint32_t) (d + len - 1)); memset(d, val, len); } static int memcmp_(void *d, const void *s, size_t len) { print_car_debug(" Compare [%08x-%08x] with [%08x - %08x] ... ", - (u32) s, (u32) (s + len - 1), (u32) d, (u32) (d + len - 1)); + (uint32_t) s, (uint32_t) (s + len - 1), (uint32_t) d, (uint32_t) (d + len - 1)); return memcmp(d, s, len); } @@ -129,7 +129,7 @@ void cache_as_ram_new_stack (void) { void *resume_backup_memory = NULL; - print_car_debug("Top about %08x ... Done\n", (u32) &resume_backup_memory); + print_car_debug("Top about %08x ... Done\n", (uint32_t) &resume_backup_memory); print_car_debug("Disabling cache as ram now\n"); disable_cache_as_ram_bsp(); -- cgit v1.2.3