diff options
-rw-r--r-- | src/soc/amd/common/block/cpu/noncar/memmap.c | 6 | ||||
-rw-r--r-- | src/soc/amd/common/block/include/amdblocks/memmap.h | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/src/soc/amd/common/block/cpu/noncar/memmap.c b/src/soc/amd/common/block/cpu/noncar/memmap.c index e6db85a2cc..396260f176 100644 --- a/src/soc/amd/common/block/cpu/noncar/memmap.c +++ b/src/soc/amd/common/block/cpu/noncar/memmap.c @@ -10,6 +10,12 @@ #include <memrange.h> #include <types.h> +struct memmap_early_dram { + /* fixed size types, so the layout in CBMEM won't change for 32 vs. 64 bit stages */ + uint32_t base; + uint32_t size; +}; + void memmap_stash_early_dram_usage(void) { struct memmap_early_dram *e; diff --git a/src/soc/amd/common/block/include/amdblocks/memmap.h b/src/soc/amd/common/block/include/amdblocks/memmap.h index 258b8b7d86..e769df6aa6 100644 --- a/src/soc/amd/common/block/include/amdblocks/memmap.h +++ b/src/soc/amd/common/block/include/amdblocks/memmap.h @@ -9,12 +9,6 @@ DECLARE_REGION(early_reserved_dram) -struct memmap_early_dram { - /* fixed size types, so the layout in CBMEM won't change for 32 vs. 64 bit stages */ - uint32_t base; - uint32_t size; -}; - void memmap_stash_early_dram_usage(void); /* report SoC memory map up to cbmem_top */ |