Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
b87b6a96
Commit
b87b6a96
authored
Aug 05, 2021
by
Rémi Bernon
Committed by
Alexandre Julliard
Aug 05, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hidclass.sys: Use call_minidriver for IOCTL_HID_READ_REPORT.
Signed-off-by:
Rémi Bernon
<
rbernon@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
a6435b3d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
10 deletions
+2
-10
device.c
dlls/hidclass.sys/device.c
+2
-10
No files found.
dlls/hidclass.sys/device.c
View file @
b87b6a96
...
...
@@ -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
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment