[coreboot-gerrit] New patch to review for coreboot: cpu/amd: Fix cbtypes.h to match UINTN convention

Stefan Reinauer (stefan.reinauer@coreboot.org) gerrit at coreboot.org
Sat Jun 20 01:49:24 CEST 2015


Stefan Reinauer (stefan.reinauer at coreboot.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/10601

-gerrit

commit b0a4cd373e30d7f5ea2a1a9e0bde34616a562da3
Author: Stefan Reinauer <stefan.reinauer at coreboot.org>
Date:   Fri Jun 19 16:42:58 2015 -0700

    cpu/amd: Fix cbtypes.h to match UINTN convention
    
    UINTN maps to uintptr_t in UEFI land. Do the same
    here.
    
    Change-Id: Ib46893c7cd5368eae43e9cda30eed7398867ac5b
    Signed-off-by: Stefan Reinauer <stefan.reinauer at coreboot.org>
    Signed-off-by: Scott Duplichan <scott at notabs.org>
---
 src/include/cpu/amd/common/cbtypes.h | 22 +++++++++++++---------
 1 file changed, 13 insertions(+), 9 deletions(-)

diff --git a/src/include/cpu/amd/common/cbtypes.h b/src/include/cpu/amd/common/cbtypes.h
index 346f1a3..6a47e00 100644
--- a/src/include/cpu/amd/common/cbtypes.h
+++ b/src/include/cpu/amd/common/cbtypes.h
@@ -20,16 +20,20 @@
 #ifndef _CBTYPES_H_
 #define _CBTYPES_H_
 
-typedef signed long long __int64;
+/* Map coreboot stdint types to AGESA types. */
+
+#include <stdint.h>
+
+typedef int64_t __int64;
 typedef void VOID;
-typedef unsigned int UINTN;
-typedef signed char CHAR8;
-typedef unsigned char UINT8;
-typedef unsigned short UINT16;
-typedef unsigned int UINT32;
-typedef signed int INT32;
-typedef unsigned long long UINT64;
-typedef unsigned char BOOLEAN;
+typedef uintptr_t UINTN;
+typedef int8_t CHAR8;
+typedef uint8_t UINT8;
+typedef uint16_t UINT16;
+typedef uint32_t UINT32;
+typedef int32_t INT32;
+typedef uint64_t UINT64;
+typedef uint8_t BOOLEAN;
 
 #define DMSG_SB_TRACE   0x02
 #define TRACE(Arguments)



More information about the coreboot-gerrit mailing list