diff options
author | vanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524> | 2010-08-17 08:27:12 +0000 |
---|---|---|
committer | vanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524> | 2010-08-17 08:27:12 +0000 |
commit | db724ff9c160fca87f80c899db582cd16c0e4a2f (patch) | |
tree | 5fadaad15af9372dbbbdb5e4d00994cc83593b3a | |
parent | 6efe9461181cb4e0d5dfdada186957258e020700 (diff) | |
download | edk2-platforms-db724ff9c160fca87f80c899db582cd16c0e4a2f.tar.xz |
Fixed one bug which may lead standard error handle could not be set into system table correctly since default return status is set to error by default.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@10800 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r-- | MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitter.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitter.c b/MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitter.c index 12deda7bb7..600e3b4e37 100644 --- a/MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitter.c +++ b/MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitter.c @@ -1336,6 +1336,7 @@ ConSplitterStdErrDriverBindingStart ( }
}
+ CpuBreakpoint ();
//
// Start ConSplitter on ControllerHandle, and create the virtual
// agrogated console device on first call Start for a StandardError handle.
@@ -3043,8 +3044,6 @@ ConSplitterTextOutAddDevice ( }
if (FeaturePcdGet (PcdConOutUgaSupport)) {
-
- Status = EFI_DEVICE_ERROR;
//
// If UGA is produced by Consplitter
//
|