mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-03 04:13:31 +00:00
Revert 19324 and part of 19325...
svn path=/trunk/; revision=19328
This commit is contained in:
@@ -329,7 +329,7 @@ cleanup:
|
||||
DeviceExtension->ReadIsPending = FALSE;
|
||||
DeviceExtension->InputCount = 0;
|
||||
DeviceExtension->PortData = ExAllocatePool(NonPagedPool, DeviceExtension->DriverExtension->DataQueueSize * sizeof(KEYBOARD_INPUT_DATA));
|
||||
Fdo->Flags |= DO_POWER_PAGABLE;
|
||||
Fdo->Flags |= DO_POWER_PAGABLE | DO_BUFFERED_IO;
|
||||
Fdo->Flags &= ~DO_DEVICE_INITIALIZING;
|
||||
|
||||
/* Add entry entry to HKEY_LOCAL_MACHINE\HARDWARE\DEVICEMAP\[DeviceBaseName] */
|
||||
@@ -385,7 +385,7 @@ ClassCallback(
|
||||
/* A read request is waiting for input, so go straight to it */
|
||||
/* FIXME: use SEH */
|
||||
RtlCopyMemory(
|
||||
Irp->MdlAddress ? MmGetSystemAddressForMdlSafe(Irp->MdlAddress, NormalPagePriority) : Irp->UserBuffer,
|
||||
Irp->MdlAddress ? MmGetSystemAddressForMdlSafe(Irp->MdlAddress, NormalPagePriority) : Irp->AssociatedIrp.SystemBuffer,
|
||||
DataStart,
|
||||
sizeof(KEYBOARD_INPUT_DATA));
|
||||
|
||||
@@ -585,7 +585,7 @@ ClassStartIo(
|
||||
|
||||
/* FIXME: use SEH */
|
||||
RtlCopyMemory(
|
||||
Irp->MdlAddress ? MmGetSystemAddressForMdlSafe(Irp->MdlAddress, NormalPagePriority) : Irp->UserBuffer,
|
||||
Irp->AssociatedIrp.SystemBuffer,
|
||||
DeviceExtension->PortData - DeviceExtension->InputCount,
|
||||
sizeof(KEYBOARD_INPUT_DATA));
|
||||
|
||||
|
||||
@@ -2063,11 +2063,6 @@ IopActionInitChildServices(
|
||||
}
|
||||
#endif
|
||||
|
||||
if (DeviceNode->ServiceName.Length == 0)
|
||||
/* We have a NULL driver for this device. We can't really do
|
||||
* something with it, so state it is started... */
|
||||
IopDeviceNodeSetFlag(DeviceNode, DNF_STARTED);
|
||||
|
||||
if (!IopDeviceNodeHasFlag(DeviceNode, DNF_DISABLED) &&
|
||||
!IopDeviceNodeHasFlag(DeviceNode, DNF_ADDED) &&
|
||||
!IopDeviceNodeHasFlag(DeviceNode, DNF_STARTED))
|
||||
|
||||
Reference in New Issue
Block a user