Felix Held has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/52582 )
Change subject: soc/amd/common/block/cpu/noncar/memmap: include types.h ......................................................................
soc/amd/common/block/cpu/noncar/memmap: include types.h
size_t is used in the code, so we should include types.h instead of stdint.h to also have those type definitions.
Signed-off-by: Felix Held felix-coreboot@felixheld.de Change-Id: I04c50de257a2d6982bfd4907eb5a1325a751919a --- M src/soc/amd/common/block/cpu/noncar/memmap.c 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/82/52582/1
diff --git a/src/soc/amd/common/block/cpu/noncar/memmap.c b/src/soc/amd/common/block/cpu/noncar/memmap.c index 921dd65..6ec437c 100644 --- a/src/soc/amd/common/block/cpu/noncar/memmap.c +++ b/src/soc/amd/common/block/cpu/noncar/memmap.c @@ -10,7 +10,7 @@ #include <fsp/util.h> #include <FspGuids.h> #include <memrange.h> -#include <stdint.h> +#include <types.h>
void memmap_stash_early_dram_usage(void) {