mirror of
https://github.com/reactos/reactos.git
synced 2025-05-10 12:23:25 +00:00
[HIDCLASS]
- remove no longer required pnp hack svn path=/trunk/; revision=66546
This commit is contained in:
parent
87b47bb64d
commit
ed9dfffa61
1 changed files with 0 additions and 11 deletions
|
@ -146,23 +146,12 @@ HidClass_Create(
|
||||||
CommonDeviceExtension = DeviceObject->DeviceExtension;
|
CommonDeviceExtension = DeviceObject->DeviceExtension;
|
||||||
if (CommonDeviceExtension->IsFDO)
|
if (CommonDeviceExtension->IsFDO)
|
||||||
{
|
{
|
||||||
#ifndef __REACTOS__
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// only supported for PDO
|
// only supported for PDO
|
||||||
//
|
//
|
||||||
Irp->IoStatus.Status = STATUS_UNSUCCESSFUL;
|
Irp->IoStatus.Status = STATUS_UNSUCCESSFUL;
|
||||||
IoCompleteRequest(Irp, IO_NO_INCREMENT);
|
IoCompleteRequest(Irp, IO_NO_INCREMENT);
|
||||||
return STATUS_UNSUCCESSFUL;
|
return STATUS_UNSUCCESSFUL;
|
||||||
#else
|
|
||||||
//
|
|
||||||
// ReactOS PnP manager [...]
|
|
||||||
//
|
|
||||||
DPRINT1("[HIDCLASS] PnP HACK\n");
|
|
||||||
Irp->IoStatus.Status = STATUS_SUCCESS;
|
|
||||||
IoCompleteRequest(Irp, IO_NO_INCREMENT);
|
|
||||||
return STATUS_SUCCESS;
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
|
|
Loading…
Reference in a new issue