diff options
-rw-r--r-- | MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf | 12 | ||||
-rw-r--r-- | MdeModulePkg/Library/RuntimeDxeReportStatusCodeLib/RuntimeDxeReportStatusCodeLib.inf | 13 |
2 files changed, 11 insertions, 14 deletions
diff --git a/MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf b/MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf index e1e72797d0..1ede797121 100644 --- a/MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf +++ b/MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf @@ -28,7 +28,7 @@ # VALID_ARCHITECTURES = IA32 X64 IPF EBC
#
-[Sources.common]
+[Sources]
ReportStatusCodeLib.c
[Packages]
@@ -36,11 +36,11 @@ MdeModulePkg/MdeModulePkg.dec
[LibraryClasses]
- PcdLib
- BaseMemoryLib
- UefiBootServicesTableLib
+ BaseLib
DebugLib
- UefiRuntimeServicesTableLib
+ UefiBootServicesTableLib
+ BaseMemoryLib
+ PcdLib
DevicePathLib
[Guids]
@@ -50,6 +50,6 @@ [Protocols]
gEfiStatusCodeRuntimeProtocolGuid ## CONSUMES
-[Pcd.common]
+[Pcd]
gEfiMdePkgTokenSpaceGuid.PcdReportStatusCodePropertyMask
diff --git a/MdeModulePkg/Library/RuntimeDxeReportStatusCodeLib/RuntimeDxeReportStatusCodeLib.inf b/MdeModulePkg/Library/RuntimeDxeReportStatusCodeLib/RuntimeDxeReportStatusCodeLib.inf index 7ccf988133..d31f0bb41c 100644 --- a/MdeModulePkg/Library/RuntimeDxeReportStatusCodeLib/RuntimeDxeReportStatusCodeLib.inf +++ b/MdeModulePkg/Library/RuntimeDxeReportStatusCodeLib/RuntimeDxeReportStatusCodeLib.inf @@ -20,7 +20,6 @@ MODULE_TYPE = DXE_RUNTIME_DRIVER
VERSION_STRING = 1.0
LIBRARY_CLASS = ReportStatusCodeLib|DXE_CORE DXE_DRIVER DXE_RUNTIME_DRIVER UEFI_APPLICATION UEFI_DRIVER
-
CONSTRUCTOR = ReportStatusCodeLibConstructor
DESTRUCTOR = ReportStatusCodeLibDestructor
#
@@ -29,19 +28,19 @@ # VALID_ARCHITECTURES = IA32 X64 IPF EBC
#
-[Sources.common]
+[Sources]
ReportStatusCodeLib.c
-
+
[Packages]
MdePkg/MdePkg.dec
MdeModulePkg/MdeModulePkg.dec
[LibraryClasses]
- PcdLib
- BaseMemoryLib
BaseLib
DebugLib
UefiBootServicesTableLib
+ BaseMemoryLib
+ PcdLib
DevicePathLib
UefiRuntimeLib
@@ -50,11 +49,9 @@ gEfiStatusCodeDataTypeDebugGuid ## CONSUMES
gEfiEventVirtualAddressChangeGuid ## CONSUMES ## Event
-
[Protocols]
gEfiStatusCodeRuntimeProtocolGuid ## CONSUMES
-
-[Pcd.common]
+[Pcd]
gEfiMdePkgTokenSpaceGuid.PcdReportStatusCodePropertyMask
|