Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
77022ae3
Commit
77022ae3
authored
Sep 21, 2004
by
Greg Kroah-Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
USB: fix incorrect usage of usb_kill_urb in rtl8150 driver.
Signed-off-by:
Greg Kroah-Hartman
<
greg@kroah.com
>
parent
43e6b5b4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
drivers/usb/net/rtl8150.c
drivers/usb/net/rtl8150.c
+1
-1
No files found.
drivers/usb/net/rtl8150.c
View file @
77022ae3
...
...
@@ -663,7 +663,7 @@ static void rtl8150_tx_timeout(struct net_device *netdev)
return
;
warn
(
"%s: Tx timeout."
,
netdev
->
name
);
dev
->
tx_urb
->
transfer_flags
|=
URB_ASYNC_UNLINK
;
usb_
kill
_urb
(
dev
->
tx_urb
);
usb_
unlink
_urb
(
dev
->
tx_urb
);
dev
->
stats
.
tx_errors
++
;
}
...
...
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