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
f44ca9d0
Commit
f44ca9d0
authored
Jul 11, 2002
by
Greg Kroah-Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
USB: fix for oops at shutdown when uhci-hcd is compiled into the kernel.
parent
445af995
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
drivers/usb/host/uhci-hcd.c
drivers/usb/host/uhci-hcd.c
+2
-2
No files found.
drivers/usb/host/uhci-hcd.c
View file @
f44ca9d0
...
...
@@ -2407,7 +2407,7 @@ static int __devinit uhci_start(struct usb_hcd *hcd)
return
retval
;
}
static
void
__devexit
uhci_stop
(
struct
usb_hcd
*
hcd
)
static
void
uhci_stop
(
struct
usb_hcd
*
hcd
)
{
struct
uhci_hcd
*
uhci
=
hcd_to_uhci
(
hcd
);
...
...
@@ -2488,7 +2488,7 @@ static const struct hc_driver uhci_driver = {
suspend:
uhci_suspend
,
resume:
uhci_resume
,
#endif
stop:
__devexit_p
(
uhci_stop
)
,
stop:
uhci_stop
,
hcd_alloc:
uhci_hcd_alloc
,
hcd_free:
uhci_hcd_free
,
...
...
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