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
bd2ab3aa
Commit
bd2ab3aa
authored
Apr 17, 2020
by
Zebediah Figura
Committed by
Alexandre Julliard
Apr 20, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wineusb.sys: Implement URB_FUNCTION_SYNC_RESET_PIPE_AND_CLEAR_STALL.
Signed-off-by:
Zebediah Figura
<
z.figura12@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
66bdf9f7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
wineusb.c
dlls/wineusb.sys/wineusb.c
+11
-0
No files found.
dlls/wineusb.sys/wineusb.c
View file @
bd2ab3aa
...
@@ -535,6 +535,17 @@ static NTSTATUS usb_submit_urb(struct usb_device *device, IRP *irp)
...
@@ -535,6 +535,17 @@ static NTSTATUS usb_submit_urb(struct usb_device *device, IRP *irp)
return
STATUS_SUCCESS
;
return
STATUS_SUCCESS
;
}
}
case
URB_FUNCTION_SYNC_RESET_PIPE_AND_CLEAR_STALL
:
{
struct
_URB_PIPE_REQUEST
*
req
=
&
urb
->
UrbPipeRequest
;
struct
pipe
pipe
=
get_pipe
(
req
->
PipeHandle
);
if
((
ret
=
libusb_clear_halt
(
device
->
handle
,
pipe
.
endpoint
))
<
0
)
ERR
(
"Failed to clear halt: %s
\n
"
,
libusb_strerror
(
ret
));
return
STATUS_SUCCESS
;
}
case
URB_FUNCTION_BULK_OR_INTERRUPT_TRANSFER
:
case
URB_FUNCTION_BULK_OR_INTERRUPT_TRANSFER
:
{
{
struct
_URB_BULK_OR_INTERRUPT_TRANSFER
*
req
=
&
urb
->
UrbBulkOrInterruptTransfer
;
struct
_URB_BULK_OR_INTERRUPT_TRANSFER
*
req
=
&
urb
->
UrbBulkOrInterruptTransfer
;
...
...
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