diff options
Diffstat (limited to 'MdeModulePkg')
3 files changed, 4 insertions, 6 deletions
diff --git a/MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenance.c b/MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenance.c index 0d54cdffc8..b35e938b40 100644 --- a/MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenance.c +++ b/MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenance.c @@ -116,8 +116,7 @@ FreeAllMenu ( **/
EFI_STATUS
-EFIAPI
-BmmBdsSetConsoleMode (
+BmmSetConsoleMode (
BOOLEAN IsSetupMode
)
{
diff --git a/MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenanceManager.h b/MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenanceManager.h index b2db0965c0..0665c78d79 100644 --- a/MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenanceManager.h +++ b/MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenanceManager.h @@ -1143,8 +1143,7 @@ GetTerminalAttribute ( **/
EFI_STATUS
-EFIAPI
-BmmBdsSetConsoleMode (
+BmmSetConsoleMode (
BOOLEAN IsSetupMode
);
diff --git a/MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootOption.c b/MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootOption.c index 7a014c911b..c660c73145 100644 --- a/MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootOption.c +++ b/MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootOption.c @@ -881,9 +881,9 @@ BootFromFile ( //
gST->ConOut->ClearScreen (gST->ConOut);
- BmmBdsSetConsoleMode (FALSE);
+ BmmSetConsoleMode (FALSE);
EfiBootManagerBoot (&BootOption);
- BmmBdsSetConsoleMode (TRUE);
+ BmmSetConsoleMode (TRUE);
FreePool(FileName);
|