summaryrefslogtreecommitdiff
path: root/ArmPkg
diff options
context:
space:
mode:
authorArd Biesheuvel <ard.biesheuvel@linaro.org>2019-01-16 21:50:59 +0100
committerArd Biesheuvel <ard.biesheuvel@linaro.org>2019-01-17 10:37:24 +0100
commit00755e1c8019cb073de85dea97737aedc10f352c (patch)
tree448746e0f9e133cabb6cdefbb7f8c3c57bdeded5 /ArmPkg
parent3837e2e0384035d18d15dd810a7c4c1b0235858a (diff)
downloadedk2-00755e1c8019cb073de85dea97737aedc10f352c.zip
edk2-00755e1c8019cb073de85dea97737aedc10f352c.tar.gz
edk2-00755e1c8019cb073de85dea97737aedc10f352c.tar.bz2
ArmPkg/DefaultExceptionHandlerLib: add missing UefiLib include
Commit 31f5388006fc ("ArmPkg/DefaultExceptionHandlerLib: use console if available") added calls to AsciiPrint() to the default exception handler code, but the ARM version did not include UefiLib.h yet (even though the .INF declares it unconditionally), resulting in build breakage. So add the missing include. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org> Reviewed-by: Leif Lindholm <leif.lindholm@linaro.org>
Diffstat (limited to 'ArmPkg')
-rw-r--r--ArmPkg/Library/DefaultExceptionHandlerLib/Arm/DefaultExceptionHandler.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/ArmPkg/Library/DefaultExceptionHandlerLib/Arm/DefaultExceptionHandler.c b/ArmPkg/Library/DefaultExceptionHandlerLib/Arm/DefaultExceptionHandler.c
index 2e0cfb2..476ec20 100644
--- a/ArmPkg/Library/DefaultExceptionHandlerLib/Arm/DefaultExceptionHandler.c
+++ b/ArmPkg/Library/DefaultExceptionHandlerLib/Arm/DefaultExceptionHandler.c
@@ -22,6 +22,7 @@
#include <Library/ArmDisassemblerLib.h>
#include <Library/SerialPortLib.h>
#include <Library/UefiBootServicesTableLib.h>
+#include <Library/UefiLib.h>
#include <Guid/DebugImageInfoTable.h>