diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2020-06-13 09:01:46 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2020-06-16 08:06:35 +0000 |
commit | da7749c5d66fc54169c33f0c01650d56517c05ac (patch) | |
tree | 3200787a69a17294d853c7b845adf32960bfa23e /src/soc/amd/picasso | |
parent | eadd251bf76e87de88931017a7aba84345549e52 (diff) | |
download | coreboot-da7749c5d66fc54169c33f0c01650d56517c05ac.tar.xz |
soc/amd/picasso/include/soc/memmap.c: Add missing <stdint.h>
include <stdint.h> for 'uint32_t'.
Change-Id: I8768b7f0692ed703a060dc0406b517dc001cc25d
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/42338
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Furquan Shaikh <furquan@google.com>
Diffstat (limited to 'src/soc/amd/picasso')
-rw-r--r-- | src/soc/amd/picasso/include/soc/memmap.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/soc/amd/picasso/include/soc/memmap.h b/src/soc/amd/picasso/include/soc/memmap.h index f8b13cc415..c27b165142 100644 --- a/src/soc/amd/picasso/include/soc/memmap.h +++ b/src/soc/amd/picasso/include/soc/memmap.h @@ -3,6 +3,7 @@ #ifndef __SOC_AMD_PICASSO_MEMMAP_H__ #define __SOC_AMD_PICASSO_MEMMAP_H__ +#include <stdint.h> #include <symbols.h> DECLARE_REGION(early_reserved_dram) |