From d7fa8bd432be45048bde0ea8f945514b0d05a347 Mon Sep 17 00:00:00 2001 From: Gustave Monce Date: Fri, 3 Dec 2021 18:21:38 +0100 Subject: [PATCH] library: Make sdm845lib's include the memorymap last --- sdm845Pkg/Library/sdm845Lib/sdm845Mem.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/sdm845Pkg/Library/sdm845Lib/sdm845Mem.c b/sdm845Pkg/Library/sdm845Lib/sdm845Mem.c index bc69edf..34c17b7 100644 --- a/sdm845Pkg/Library/sdm845Lib/sdm845Mem.c +++ b/sdm845Pkg/Library/sdm845Lib/sdm845Mem.c @@ -14,11 +14,14 @@ * **/ -#include #include #include #include #include + +// Must include last +#include + /** Return the Virtual Memory Map of your platform This Virtual Memory Map is used by MemoryInitPei Module to initialize the MMU @@ -85,4 +88,4 @@ VOID ArmPlatformGetVirtualMemoryMap( *VirtualMemoryMap = &MemoryDescriptor[0]; // ASSERT(0); -} \ No newline at end of file +} -- 2.45.2