mirror of https://github.com/acidanthera/audk.git
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:
parent
8c53b5e67c
commit
bcfe5adbe7
|
@ -662,8 +662,7 @@ UpdateFrontPageBannerStrings (
|
||||||
|
|
||||||
**/
|
**/
|
||||||
EFI_STATUS
|
EFI_STATUS
|
||||||
EFIAPI
|
UiSetConsoleMode (
|
||||||
BdsSetConsoleMode (
|
|
||||||
BOOLEAN IsSetupMode
|
BOOLEAN IsSetupMode
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
|
@ -955,9 +954,9 @@ InitializeUserInterface (
|
||||||
|
|
||||||
InitializeStringSupport ();
|
InitializeStringSupport ();
|
||||||
|
|
||||||
BdsSetConsoleMode (TRUE);
|
UiSetConsoleMode (TRUE);
|
||||||
UiEntry (FALSE);
|
UiEntry (FALSE);
|
||||||
BdsSetConsoleMode (FALSE);
|
UiSetConsoleMode (FALSE);
|
||||||
|
|
||||||
UninitializeStringSupport ();
|
UninitializeStringSupport ();
|
||||||
HiiRemovePackages (HiiHandle);
|
HiiRemovePackages (HiiHandle);
|
||||||
|
|
Loading…
Reference in New Issue