summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorerictian <erictian@6f19259b-4bc3-4df7-8a09-765794883524>2010-04-19 05:32:57 +0000
committererictian <erictian@6f19259b-4bc3-4df7-8a09-765794883524>2010-04-19 05:32:57 +0000
commit69c3ab976d4da53311a7573b9ff44c0422a28926 (patch)
tree48deee7384a8bf7ec98044857c279ba6748c8960
parented8dfd7bfeec6fe5333d6a90706d72af5ddee03d (diff)
downloadedk2-69c3ab976d4da53311a7573b9ff44c0422a28926.tar.gz
edk2-69c3ab976d4da53311a7573b9ff44c0422a28926.tar.bz2
edk2-69c3ab976d4da53311a7573b9ff44c0422a28926.zip
Use SimpleTextInEx.Reset to initialize correctly KeyToggleStatue and KeyShiftState value.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@10381 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r--IntelFrameworkModulePkg/Bus/Isa/Ps2KeyboardDxe/Ps2Keyboard.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/IntelFrameworkModulePkg/Bus/Isa/Ps2KeyboardDxe/Ps2Keyboard.c b/IntelFrameworkModulePkg/Bus/Isa/Ps2KeyboardDxe/Ps2Keyboard.c
index 098d29f6e0..428758fd99 100644
--- a/IntelFrameworkModulePkg/Bus/Isa/Ps2KeyboardDxe/Ps2Keyboard.c
+++ b/IntelFrameworkModulePkg/Bus/Isa/Ps2KeyboardDxe/Ps2Keyboard.c
@@ -3,8 +3,8 @@
PS/2 Keyboard driver. Routines that interacts with callers,
conforming to EFI driver model
-Copyright (c) 2006 - 2009, Intel Corporation
-All rights reserved. This program and the accompanying materials
+Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
+This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php
@@ -337,7 +337,7 @@ KbdControllerDriverStart (
//
// Reset the keyboard device
//
- Status = ConsoleIn->ConIn.Reset (&ConsoleIn->ConIn, TRUE);
+ Status = ConsoleIn->ConInEx.Reset (&ConsoleIn->ConInEx, TRUE);
if (EFI_ERROR (Status)) {
Status = EFI_DEVICE_ERROR;
StatusCode = EFI_PERIPHERAL_KEYBOARD | EFI_P_EC_NOT_DETECTED;