Rémi Bernon : hidclass.sys: Use call_minidriver for IOCTL_HID_READ_REPORT.

Alexandre Julliard julliard at winehq.org
Thu Aug 5 16:13:39 CDT 2021


Module: wine
Branch: master
Commit: b87b6a96e06fee490f430d1e01a9eab57b1dd630
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=b87b6a96e06fee490f430d1e01a9eab57b1dd630

Author: Rémi Bernon <rbernon at codeweavers.com>
Date:   Thu Aug  5 10:36:03 2021 +0200

hidclass.sys: Use call_minidriver for IOCTL_HID_READ_REPORT.

Signed-off-by: Rémi Bernon <rbernon at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/hidclass.sys/device.c | 12 ++----------
 1 file changed, 2 insertions(+), 10 deletions(-)

diff --git a/dlls/hidclass.sys/device.c b/dlls/hidclass.sys/device.c
index 3a577aabfbd..ab449b9b0d9 100644
--- a/dlls/hidclass.sys/device.c
+++ b/dlls/hidclass.sys/device.c
@@ -178,7 +178,6 @@ static DWORD CALLBACK hid_device_thread(void *args)
 {
     DEVICE_OBJECT *device = (DEVICE_OBJECT*)args;
 
-    IRP *irp;
     IO_STATUS_BLOCK irp_status;
     HID_XFER_PACKET *packet;
     DWORD rc;
@@ -221,15 +220,8 @@ static DWORD CALLBACK hid_device_thread(void *args)
 
         while(1)
         {
-            KEVENT event;
-
-            KeInitializeEvent(&event, NotificationEvent, FALSE);
-
-            irp = IoBuildDeviceIoControlRequest(IOCTL_HID_READ_REPORT, ext->u.pdo.parent_fdo,
-                    NULL, 0, packet->reportBuffer, report_size, TRUE, &event, &irp_status);
-
-            if (IoCallDriver(ext->u.pdo.parent_fdo, irp) == STATUS_PENDING)
-                KeWaitForSingleObject(&event, Executive, KernelMode, FALSE, NULL);
+            call_minidriver( IOCTL_HID_READ_REPORT, ext->u.pdo.parent_fdo, NULL, 0,
+                             packet->reportBuffer, report_size, &irp_status );
 
             rc = WaitForSingleObject(ext->u.pdo.halt_event, 0);
             if (rc == WAIT_OBJECT_0)




More information about the wine-cvs mailing list