[coreboot-gerrit] Patch set updated for coreboot: cpu/amd/car: Use standard integer types in post_cache_as_ram.c

Timothy Pearson (tpearson@raptorengineeringinc.com) gerrit at coreboot.org
Sun Oct 25 05:01:25 CET 2015


Timothy Pearson (tpearson at raptorengineeringinc.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/12185

-gerrit

commit 1d9dd43071169332ee594f9f6a4b177097a505c0
Author: Timothy Pearson <tpearson at raptorengineeringinc.com>
Date:   Sat Oct 24 15:27:49 2015 -0500

    cpu/amd/car: Use standard integer types in post_cache_as_ram.c
    
    Change-Id: I02c1fba5c749d5adb33ec86777bde108e587caa6
    Signed-off-by: Timothy Pearson <tpearson at raptorengineeringinc.com>
---
 src/cpu/amd/car/post_cache_as_ram.c | 8 ++++----
 1 file 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 116167b..8ec5c3b 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();
 



More information about the coreboot-gerrit mailing list