diff options
author | Oliver Smith-Denny <osde@linux.microsoft.com> | 2024-08-06 15:19:23 -0700 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2024-09-12 19:36:59 +0000 |
commit | 734e71f428a4fdac5d82ae9c093911053356f6ff (patch) | |
tree | 3af3c3f9e329b079b8ccd28a3992d610ebafde61 /ArmPlatformPkg/PeilessSec/AArch64/ModuleEntryPoint.S | |
parent | 656665d289b355ada71ad718759200c44c655264 (diff) | |
download | edk2-734e71f428a4fdac5d82ae9c093911053356f6ff.tar.gz |
MdePkg: Move AsmMacroIoLib*.h from ArmPkg
AsmMacroIoLib.h and AsmMacroIoLibV8.h are used by the
CompilerIntrinsicsLib, which is moving to MdePkg. These
functions provide standard definitions for ARM/AARCH64
assembly code, respectively, and so are moved to the arch
directories in MdePkg to avoid MdePkg having a
dependency on ArmPkg.
Now that the files are in Arm/ and AArch64/ directories,
the filenames are changed to AsmMacroLib.h as we can
distinguish the architecture from the path.
AsmMacroIoLib.inc is unused and so is removed.
Continuous-integration-options: PatchCheck.ignore-multi-package
Signed-off-by: Oliver Smith-Denny <osde@linux.microsoft.com>
Diffstat (limited to 'ArmPlatformPkg/PeilessSec/AArch64/ModuleEntryPoint.S')
-rw-r--r-- | ArmPlatformPkg/PeilessSec/AArch64/ModuleEntryPoint.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ArmPlatformPkg/PeilessSec/AArch64/ModuleEntryPoint.S b/ArmPlatformPkg/PeilessSec/AArch64/ModuleEntryPoint.S index efb6c5ade9..7263ee9374 100644 --- a/ArmPlatformPkg/PeilessSec/AArch64/ModuleEntryPoint.S +++ b/ArmPlatformPkg/PeilessSec/AArch64/ModuleEntryPoint.S @@ -5,7 +5,7 @@ //
//
-#include <AsmMacroIoLibV8.h>
+#include <AsmMacroLib.h>
ASM_FUNC(_ModuleEntryPoint)
// Do early platform specific actions
|