summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <tpearson@raptorengineeringinc.com>2015-10-24 15:27:49 -0500
committerPeter Stuge <peter@stuge.se>2015-10-25 06:08:08 +0100
commit83c3c9e1d54d880194eff3e8856ebbb38d35ba1c (patch)
tree596eeb72bec19a441db11fdf32c2d003ef7b78d2
parentee3ec8e21256e544ef0a32f283a65c0c47040948 (diff)
downloadcoreboot-83c3c9e1d54d880194eff3e8856ebbb38d35ba1c.tar.gz
coreboot-83c3c9e1d54d880194eff3e8856ebbb38d35ba1c.tar.bz2
coreboot-83c3c9e1d54d880194eff3e8856ebbb38d35ba1c.zip
cpu/amd/car: Use standard integer types in post_cache_as_ram.c
Change-Id: I02c1fba5c749d5adb33ec86777bde108e587caa6 Signed-off-by: Timothy Pearson <tpearson@raptorengineeringinc.com> Reviewed-on: http://review.coreboot.org/12185 Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Tested-by: build bot (Jenkins) Reviewed-by: Peter Stuge <peter@stuge.se>
-rw-r--r--src/cpu/amd/car/post_cache_as_ram.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/cpu/amd/car/post_cache_as_ram.c b/src/cpu/amd/car/post_cache_as_ram.c
index 116167b418a3..8ec5c3b840d6 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();