diff options
author | Dandan Bi <dandan.bi@intel.com> | 2017-03-17 09:28:11 +0800 |
---|---|---|
committer | Hao Wu <hao.a.wu@intel.com> | 2017-03-17 10:09:58 +0800 |
commit | d948cf838edd02ad2c3c39c870ea751d4c33f337 (patch) | |
tree | 30b1f2dcfcbce6f5b5f9fed03d231a30ecd0ddc0 | |
parent | 2a5d278b59bea224e0f1c727ed8f80871feaed67 (diff) | |
download | edk2-d948cf838edd02ad2c3c39c870ea751d4c33f337.zip edk2-d948cf838edd02ad2c3c39c870ea751d4c33f337.tar.gz edk2-d948cf838edd02ad2c3c39c870ea751d4c33f337.tar.bz2 |
MdeModulePkg/DxeCapsuleLibFmp: Fix build failure issues
Cc: Jiewen Yao <jiewen.yao@intel.com>
Cc: Star Zeng <star.zeng@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Dandan Bi <dandan.bi@intel.com>
Reviewed-by: Jiewen Yao <jiewen.yao@intel.com>
-rw-r--r-- | MdeModulePkg/Library/DxeCapsuleLibFmp/DxeCapsuleLib.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/MdeModulePkg/Library/DxeCapsuleLibFmp/DxeCapsuleLib.c b/MdeModulePkg/Library/DxeCapsuleLibFmp/DxeCapsuleLib.c index 9ed0be3..49f1103 100644 --- a/MdeModulePkg/Library/DxeCapsuleLibFmp/DxeCapsuleLib.c +++ b/MdeModulePkg/Library/DxeCapsuleLibFmp/DxeCapsuleLib.c @@ -47,6 +47,9 @@ #include <Protocol/FirmwareManagement.h>
#include <Protocol/DevicePath.h>
+extern EFI_SYSTEM_RESOURCE_TABLE *mEsrtTable;
+extern BOOLEAN mIsVirtualAddrConverted;
+
BOOLEAN mDxeCapsuleLibEndOfDxe = FALSE;
EFI_EVENT mDxeCapsuleLibEndOfDxeEvent = NULL;
|