diff options
-rw-r--r-- | MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenance.c | 6 | ||||
-rw-r--r-- | MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenanceManagerUiLib.inf | 8 |
2 files changed, 7 insertions, 7 deletions
diff --git a/MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenance.c b/MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenance.c index 2d52f9bac3..8189bd1084 100644 --- a/MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenance.c +++ b/MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenance.c @@ -1392,7 +1392,7 @@ FreeAllMenu ( **/
EFI_STATUS
EFIAPI
-BootMaintenanceManagerLibConstructor (
+BootMaintenanceManagerUiLibConstructor (
IN EFI_HANDLE ImageHandle,
IN EFI_SYSTEM_TABLE *SystemTable
)
@@ -1423,7 +1423,7 @@ BootMaintenanceManagerLibConstructor ( &mBootMaintGuid,
mBmmCallbackInfo->BmmDriverHandle,
BootMaintenanceManagerBin,
- BootMaintenanceManagerLibStrings,
+ BootMaintenanceManagerUiLibStrings,
NULL
);
ASSERT (mBmmCallbackInfo->BmmHiiHandle != NULL);
@@ -1481,7 +1481,7 @@ BootMaintenanceManagerLibConstructor ( **/
EFI_STATUS
EFIAPI
-BootMaintenanceManagerLibDestructor (
+BootMaintenanceManagerUiLibDestructor (
IN EFI_HANDLE ImageHandle,
IN EFI_SYSTEM_TABLE *SystemTable
)
diff --git a/MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenanceManagerUiLib.inf b/MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenanceManagerUiLib.inf index 302cb901e2..cd1fe961e0 100644 --- a/MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenanceManagerUiLib.inf +++ b/MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenanceManagerUiLib.inf @@ -13,14 +13,14 @@ ##
[Defines]
INF_VERSION = 0x00010005
- BASE_NAME = BootMaintenanceManagerLib
- MODULE_UNI_FILE = BootMaintenanceManagerLib.uni
+ BASE_NAME = BootMaintenanceManagerUiLib
+ MODULE_UNI_FILE = BootMaintenanceManagerUiLib.uni
FILE_GUID = CA9E4824-4198-4715-AA22-E2935E703A07
MODULE_TYPE = DXE_DRIVER
VERSION_STRING = 1.0
LIBRARY_CLASS = NULL|DXE_DRIVER UEFI_APPLICATION
- CONSTRUCTOR = BootMaintenanceManagerLibConstructor
- DESTRUCTOR = BootMaintenanceManagerLibDestructor
+ CONSTRUCTOR = BootMaintenanceManagerUiLibConstructor
+ DESTRUCTOR = BootMaintenanceManagerUiLibDestructor
#
# The following information is for reference only and not required by the build tools.
#
|