diff options
author | Dong, Eric <eric.dong@intel.com> | 2016-05-18 14:52:25 +0800 |
---|---|---|
committer | Liming Gao <liming.gao@intel.com> | 2016-05-19 12:33:33 +0800 |
commit | 80b14f9a9941e8beea8f54e32f87ff8c5ad6a2c2 (patch) | |
tree | 47d64c85b9b16203da523c69581f9b7cae27935f /MdeModulePkg | |
parent | bcfe5adbe7d9af50a73c7f80cf6e52f6d777d098 (diff) | |
download | edk2-platforms-80b14f9a9941e8beea8f54e32f87ff8c5ad6a2c2.tar.xz |
BootMaintenanceManagerUiLib: Remove invalid keyword "bds"
In current code, BootMaintenanceManagerUiLib is not BDS scope.
So we remove bds keyword in the function name.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Eric Dong <eric.dong@intel.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
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);
|