diff options
author | ydong10 <ydong10@6f19259b-4bc3-4df7-8a09-765794883524> | 2011-02-16 05:31:39 +0000 |
---|---|---|
committer | ydong10 <ydong10@6f19259b-4bc3-4df7-8a09-765794883524> | 2011-02-16 05:31:39 +0000 |
commit | 8e491a81e0d4c98fabb974ebc16c4cc77cc56eca (patch) | |
tree | ab4cbf6ad23d4c19920378640a4f2aa89406de67 /IntelFrameworkModulePkg/Universal/BdsDxe/BootMaint/BootMaint.c | |
parent | ad0ecbcf79e6876c90b88d37830d21906ec8fafc (diff) | |
download | edk2-platforms-8e491a81e0d4c98fabb974ebc16c4cc77cc56eca.tar.xz |
Enhance BMM to support changing FlowControl setting in Front Page.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@11317 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'IntelFrameworkModulePkg/Universal/BdsDxe/BootMaint/BootMaint.c')
-rw-r--r-- | IntelFrameworkModulePkg/Universal/BdsDxe/BootMaint/BootMaint.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/IntelFrameworkModulePkg/Universal/BdsDxe/BootMaint/BootMaint.c b/IntelFrameworkModulePkg/Universal/BdsDxe/BootMaint/BootMaint.c index 6e15e096a6..2cddb519df 100644 --- a/IntelFrameworkModulePkg/Universal/BdsDxe/BootMaint/BootMaint.c +++ b/IntelFrameworkModulePkg/Universal/BdsDxe/BootMaint/BootMaint.c @@ -742,9 +742,10 @@ ApplyChangeHandler ( ASSERT (CurrentFakeNVMap->COMParity < (sizeof (ParityList) / sizeof (ParityList[0])));
NewTerminalContext->Parity = (UINT8) ParityList[CurrentFakeNVMap->COMParity].Value;
NewTerminalContext->TerminalType = CurrentFakeNVMap->COMTerminalType;
+ NewTerminalContext->FlowControl = CurrentFakeNVMap->COMFlowControl;
ChangeTerminalDevicePath (
- NewTerminalContext->DevicePath,
+ &(NewTerminalContext->DevicePath),
FALSE
);
|