Disable USB keyboard and mouse support, as they conflict with i8042prt driver.

We need to change kbdclass/mouclass to be an upper filter of keyboard/mouse device objects (which would become unnamed), and to support multiple keyboards/mice

svn path=/trunk/; revision=17799
This commit is contained in:
Hervé Poussineau 2005-09-11 13:55:18 +00:00
parent 019de62105
commit cde1a0c17d

View file

@ -65,6 +65,7 @@ CreateRootHubPdo(
return STATUS_SUCCESS;
}
#if 0
static NTSTATUS
AddDevice_Keyboard(
IN PDRIVER_OBJECT DriverObject,
@ -122,6 +123,7 @@ AddDevice_Mouse(
return STATUS_SUCCESS;
}
#endif
NTSTATUS STDCALL
AddDevice(
@ -229,10 +231,12 @@ AddDevice(
Status = IoCreateSymbolicLink(&LinkDeviceName, &DeviceName);
/*
if (NT_SUCCESS(Status))
Status = AddDevice_Keyboard(DriverObject, pdo);
if (NT_SUCCESS(Status))
Status = AddDevice_Mouse(DriverObject, pdo);
*/
if (!NT_SUCCESS(Status))
{