diff options
author | Ard Biesheuvel <ardb@kernel.org> | 2025-01-16 18:32:59 +0100 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2025-01-17 18:37:27 +0000 |
commit | 34ab9197a51f7e158c49875992c2392346f1ac7f (patch) | |
tree | bc3eca8d14e50e189be6da68ccccc89b46c0ba95 /DynamicTablesPkg | |
parent | 9bf20991b40b51468880bd7451000ec9cbe25652 (diff) | |
download | edk2-34ab9197a51f7e158c49875992c2392346f1ac7f.tar.gz |
DynamicTablesPkg/SsdtSerialPortFixupLib: Switch to ArmGicLib.h
ArmGicArchLib is going away, and preprocessor defines related to the GIC
have been moved into ArmGicLib.h instead.
Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
Diffstat (limited to 'DynamicTablesPkg')
-rw-r--r-- | DynamicTablesPkg/Library/Common/SsdtSerialPortFixupLib/SsdtSerialPortFixupLib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/DynamicTablesPkg/Library/Common/SsdtSerialPortFixupLib/SsdtSerialPortFixupLib.c b/DynamicTablesPkg/Library/Common/SsdtSerialPortFixupLib/SsdtSerialPortFixupLib.c index e8eef4048d..fa1e401f9c 100644 --- a/DynamicTablesPkg/Library/Common/SsdtSerialPortFixupLib/SsdtSerialPortFixupLib.c +++ b/DynamicTablesPkg/Library/Common/SsdtSerialPortFixupLib/SsdtSerialPortFixupLib.c @@ -31,7 +31,7 @@ #include <Protocol/ConfigurationManagerProtocol.h>
#if defined (MDE_CPU_ARM) || defined (MDE_CPU_AARCH64)
- #include <Library/ArmGicArchLib.h>
+ #include <Library/ArmGicLib.h>
#endif
/** C array containing the compiled AML template.
|