X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=IntelFrameworkModulePkg%2FBus%2FIsa%2FPs2KeyboardDxe%2FPs2Keyboard.c;h=362533f930d2da7c52a719141e42d5e9e72e65e5;hp=428758fd99f8e4f7b533ac3de0fdd5342c3a74e7;hb=c220787b13fbbff9a0b0bc2e03d88577a5e9b52b;hpb=c1fd2767c118a9f9a95f60920a027e2c7450b5b8 diff --git a/IntelFrameworkModulePkg/Bus/Isa/Ps2KeyboardDxe/Ps2Keyboard.c b/IntelFrameworkModulePkg/Bus/Isa/Ps2KeyboardDxe/Ps2Keyboard.c index 428758fd99..362533f930 100644 --- a/IntelFrameworkModulePkg/Bus/Isa/Ps2KeyboardDxe/Ps2Keyboard.c +++ b/IntelFrameworkModulePkg/Bus/Isa/Ps2KeyboardDxe/Ps2Keyboard.c @@ -3,7 +3,7 @@ PS/2 Keyboard driver. Routines that interacts with callers, conforming to EFI driver model -Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.
+Copyright (c) 2006 - 2011, Intel Corporation. All rights reserved.
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 @@ -243,11 +243,6 @@ KbdControllerDriverStart ( ConsoleIn->StatusRegisterAddress = KEYBOARD_8042_STATUS_REGISTER; ConsoleIn->CommandRegisterAddress = KEYBOARD_8042_COMMAND_REGISTER; ConsoleIn->IsaIo = IsaIo; - ConsoleIn->ScancodeBufStartPos = 0; - ConsoleIn->ScancodeBufEndPos = KEYBOARD_BUFFER_MAX_COUNT - 1; - ConsoleIn->ScancodeBufCount = 0; - ConsoleIn->Ctrled = FALSE; - ConsoleIn->Alted = FALSE; ConsoleIn->DevicePath = ParentDevicePath; ConsoleIn->ConInEx.Reset = KeyboardEfiResetEx; @@ -279,7 +274,7 @@ KbdControllerDriverStart ( EVT_NOTIFY_WAIT, TPL_NOTIFY, KeyboardWaitForKey, - &(ConsoleIn->ConIn), + ConsoleIn, &((ConsoleIn->ConIn).WaitForKey) ); if (EFI_ERROR (Status)) { @@ -294,7 +289,7 @@ KbdControllerDriverStart ( EVT_NOTIFY_WAIT, TPL_NOTIFY, KeyboardWaitForKeyEx, - &(ConsoleIn->ConInEx), + ConsoleIn, &(ConsoleIn->ConInEx.WaitForKeyEx) ); if (EFI_ERROR (Status)) {