diff options
author | Dong, Eric <eric.dong@intel.com> | 2016-05-18 14:52:26 +0800 |
---|---|---|
committer | Liming Gao <liming.gao@intel.com> | 2016-05-19 12:33:33 +0800 |
commit | b6c8ee68652e90b0ef9b563b00b5d0f3119956e7 (patch) | |
tree | 3ca77434d0b58ea64d26a834b2b333bb3c948c2a /MdeModulePkg/Library | |
parent | 80b14f9a9941e8beea8f54e32f87ff8c5ad6a2c2 (diff) | |
download | edk2-platforms-b6c8ee68652e90b0ef9b563b00b5d0f3119956e7.tar.xz |
MdeModulePkg BootManagerUiLib: Remove invalid keyword "bds".
In current code, BootManagerUiLib 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/Library')
-rw-r--r-- | MdeModulePkg/Library/BootManagerUiLib/BootManager.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/MdeModulePkg/Library/BootManagerUiLib/BootManager.c b/MdeModulePkg/Library/BootManagerUiLib/BootManager.c index 73ca016276..82038879c5 100644 --- a/MdeModulePkg/Library/BootManagerUiLib/BootManager.c +++ b/MdeModulePkg/Library/BootManagerUiLib/BootManager.c @@ -91,8 +91,7 @@ BOOT_MANAGER_CALLBACK_DATA gBootManagerPrivate = { **/
EFI_STATUS
-EFIAPI
-BmBdsSetConsoleMode (
+BmSetConsoleMode (
BOOLEAN IsSetupMode
)
{
@@ -788,9 +787,9 @@ BootManagerCallback ( //
// parse the selected option
//
- BmBdsSetConsoleMode (FALSE);
+ BmSetConsoleMode (FALSE);
EfiBootManagerBoot (&BootOption[QuestionId - 1]);
- BmBdsSetConsoleMode (TRUE);
+ BmSetConsoleMode (TRUE);
if (EFI_ERROR (BootOption[QuestionId - 1].Status)) {
gST->ConOut->OutputString (
|