mirror of https://github.com/acidanthera/audk.git
Remove disabling keyboard/auxiliary interface in Driver Binding Protocol.Stop() of Ps2KeyboardDxe/Ps2MouseDxe/Ps2MouseAbsolutePointer driver so that PS/2 keyboard and mouse can be used with legacy option ROMs after all EFI drivers have been disconnected.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@11611 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
aee17e890d
commit
abfbafd5a7
|
@ -501,10 +501,6 @@ KbdControllerDriverStop (
|
||||||
gBS->CloseEvent (ConsoleIn->TimerEvent);
|
gBS->CloseEvent (ConsoleIn->TimerEvent);
|
||||||
ConsoleIn->TimerEvent = NULL;
|
ConsoleIn->TimerEvent = NULL;
|
||||||
}
|
}
|
||||||
//
|
|
||||||
// Disable the keyboard interface
|
|
||||||
//
|
|
||||||
Status = DisableKeyboard (ConsoleIn);
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// Since there will be no timer handler for keyboard input any more,
|
// Since there will be no timer handler for keyboard input any more,
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
A faked PS/2 Absolute Pointer driver. Routines that interacts with callers,
|
A faked PS/2 Absolute Pointer driver. Routines that interacts with callers,
|
||||||
conforming to EFI driver model
|
conforming to EFI driver model
|
||||||
|
|
||||||
Copyright (c) 2006 - 2007, Intel Corporation. All rights reserved.<BR>
|
Copyright (c) 2006 - 2011, Intel Corporation. All rights reserved.<BR>
|
||||||
This program and the accompanying materials
|
This program and the accompanying materials
|
||||||
are licensed and made available under the terms and conditions of the BSD License
|
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
|
which accompanies this distribution. The full text of the license may be found at
|
||||||
|
@ -444,10 +444,6 @@ PS2MouseAbsolutePointerDriverStop (
|
||||||
if (EFI_ERROR (Status)) {
|
if (EFI_ERROR (Status)) {
|
||||||
return Status;
|
return Status;
|
||||||
}
|
}
|
||||||
//
|
|
||||||
// Disable mouse on keyboard controller
|
|
||||||
//
|
|
||||||
KbcDisableAux (MouseAbsolutePointerDev->IsaIo);
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// Cancel mouse data polling timer, close timer event
|
// Cancel mouse data polling timer, close timer event
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
PS/2 Mouse driver. Routines that interacts with callers,
|
PS/2 Mouse driver. Routines that interacts with callers,
|
||||||
conforming to EFI driver model.
|
conforming to EFI driver model.
|
||||||
|
|
||||||
Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR>
|
Copyright (c) 2006 - 2011, Intel Corporation. All rights reserved.<BR>
|
||||||
This program and the accompanying materials
|
This program and the accompanying materials
|
||||||
are licensed and made available under the terms and conditions of the BSD License
|
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
|
which accompanies this distribution. The full text of the license may be found at
|
||||||
|
@ -458,10 +458,6 @@ PS2MouseDriverStop (
|
||||||
if (EFI_ERROR (Status)) {
|
if (EFI_ERROR (Status)) {
|
||||||
return Status;
|
return Status;
|
||||||
}
|
}
|
||||||
//
|
|
||||||
// Disable mouse on keyboard controller
|
|
||||||
//
|
|
||||||
KbcDisableAux (MouseDev->IsaIo);
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// Cancel mouse data polling timer, close timer event
|
// Cancel mouse data polling timer, close timer event
|
||||||
|
|
Loading…
Reference in New Issue