mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 08:25:03 +00:00
Disable PS/2 auxiliary port detection, which is too unreliable.
svn path=/trunk/; revision=26126
This commit is contained in:
parent
958ed9973b
commit
889d81aa97
1 changed files with 7 additions and 0 deletions
|
@ -1890,6 +1890,12 @@ PS2ControllerWait(VOID)
|
|||
static BOOLEAN
|
||||
DetectPS2AuxPort(VOID)
|
||||
{
|
||||
#if 1
|
||||
/* Current detection is too unreliable. Just do as if
|
||||
* the PS/2 aux port is always present
|
||||
*/
|
||||
return TRUE;
|
||||
#else
|
||||
ULONG Loops;
|
||||
UCHAR Status;
|
||||
|
||||
|
@ -1920,6 +1926,7 @@ DetectPS2AuxPort(VOID)
|
|||
READ_PORT_UCHAR((PUCHAR)CONTROLLER_REGISTER_DATA);
|
||||
|
||||
return (Status & CONTROLLER_STATUS_MOUSE_OUTPUT_BUFFER_FULL);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue