- Handle IRP_MN_FILTER_RESOURCE_REQUIREMENTS

- Now isapnp receives IRP_MN_START_DEVICE but it still doesn't work

svn path=/trunk/; revision=40313
This commit is contained in:
Cameron Gutman 2009-04-01 09:01:26 +00:00
parent 79241af077
commit 6a35d6b424

View file

@ -1662,6 +1662,12 @@ ISAPNPControl(
Status = ISAPNPStopDevice(DeviceObject, Irp, IrpSp);
break;
case IRP_MN_FILTER_RESOURCE_REQUIREMENTS:
/* Nothing to do here */
DPRINT("IRP_MN_FILTER_RESOURCE_REQUIREMENTS\n");
Status = Irp->IoStatus.Status;
break;
default:
DPRINT("Unknown IOCTL 0x%X\n", IrpSp->MinorFunction);
Status = STATUS_NOT_IMPLEMENTED;