MdeModulePkg UiApp: Remove invalid keyword "bds" in UiApp.

In current code, UiApp is not the BDS scope. So we remove the 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:
Eric Dong 2016-05-18 14:52:24 +08:00 committed by Liming Gao
parent 8c53b5e67c
commit bcfe5adbe7
1 changed files with 3 additions and 4 deletions

View File

@ -662,8 +662,7 @@ UpdateFrontPageBannerStrings (
**/
EFI_STATUS
EFIAPI
BdsSetConsoleMode (
UiSetConsoleMode (
BOOLEAN IsSetupMode
)
{
@ -955,9 +954,9 @@ InitializeUserInterface (
InitializeStringSupport ();
BdsSetConsoleMode (TRUE);
UiSetConsoleMode (TRUE);
UiEntry (FALSE);
BdsSetConsoleMode (FALSE);
UiSetConsoleMode (FALSE);
UninitializeStringSupport ();
HiiRemovePackages (HiiHandle);