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>
This commit is contained in:
parent
80b14f9a99
commit
b6c8ee6865
|
@ -91,8 +91,7 @@ BOOT_MANAGER_CALLBACK_DATA gBootManagerPrivate = {
|
||||||
|
|
||||||
**/
|
**/
|
||||||
EFI_STATUS
|
EFI_STATUS
|
||||||
EFIAPI
|
BmSetConsoleMode (
|
||||||
BmBdsSetConsoleMode (
|
|
||||||
BOOLEAN IsSetupMode
|
BOOLEAN IsSetupMode
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
|
@ -788,9 +787,9 @@ BootManagerCallback (
|
||||||
//
|
//
|
||||||
// parse the selected option
|
// parse the selected option
|
||||||
//
|
//
|
||||||
BmBdsSetConsoleMode (FALSE);
|
BmSetConsoleMode (FALSE);
|
||||||
EfiBootManagerBoot (&BootOption[QuestionId - 1]);
|
EfiBootManagerBoot (&BootOption[QuestionId - 1]);
|
||||||
BmBdsSetConsoleMode (TRUE);
|
BmSetConsoleMode (TRUE);
|
||||||
|
|
||||||
if (EFI_ERROR (BootOption[QuestionId - 1].Status)) {
|
if (EFI_ERROR (BootOption[QuestionId - 1].Status)) {
|
||||||
gST->ConOut->OutputString (
|
gST->ConOut->OutputString (
|
||||||
|
|
Loading…
Reference in New Issue