From 6a35d6b424af25ffdf07c839505d7609870988d3 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Wed, 1 Apr 2009 09:01:26 +0000 Subject: [PATCH] - Handle IRP_MN_FILTER_RESOURCE_REQUIREMENTS - Now isapnp receives IRP_MN_START_DEVICE but it still doesn't work svn path=/trunk/; revision=40313 --- reactos/drivers/bus/isapnp/isapnp.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/reactos/drivers/bus/isapnp/isapnp.c b/reactos/drivers/bus/isapnp/isapnp.c index a3bf5cbc5c0..0ac8610670c 100644 --- a/reactos/drivers/bus/isapnp/isapnp.c +++ b/reactos/drivers/bus/isapnp/isapnp.c @@ -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;