[ros-diffs] [cgutman] 55192: [MOUCLASS] - Pass down unsupported IRPs instead of completing them

cgutman at svn.reactos.org cgutman at svn.reactos.org
Thu Jan 26 02:59:58 UTC 2012


Author: cgutman
Date: Thu Jan 26 02:59:58 2012
New Revision: 55192

URL: http://svn.reactos.org/svn/reactos?rev=55192&view=rev
Log:
[MOUCLASS]
- Pass down unsupported IRPs instead of completing them

Modified:
    branches/usb-bringup-trunk/drivers/input/mouclass/mouclass.c

Modified: branches/usb-bringup-trunk/drivers/input/mouclass/mouclass.c
URL: http://svn.reactos.org/svn/reactos/branches/usb-bringup-trunk/drivers/input/mouclass/mouclass.c?rev=55192&r1=55191&r2=55192&view=diff
==============================================================================
--- branches/usb-bringup-trunk/drivers/input/mouclass/mouclass.c [iso-8859-1] (original)
+++ branches/usb-bringup-trunk/drivers/input/mouclass/mouclass.c [iso-8859-1] Thu Jan 26 02:59:58 2012
@@ -854,7 +854,7 @@
 	}
 
 	Irp->IoStatus.Status = Status;
-	if (NT_SUCCESS(Status))
+	if (NT_SUCCESS(Status) || Status == STATUS_NOT_SUPPORTED)
 	{
 		IoSkipCurrentIrpStackLocation(Irp);
 		return IoCallDriver(DeviceExtension->LowerDevice, Irp);




More information about the Ros-diffs mailing list