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
Kirill Smelkov
linux
Commits
7cd6abc5
Commit
7cd6abc5
authored
Apr 26, 2002
by
Greg Kroah-Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
USB core
document the return value of usb_register_dev() better.
parent
794d0b0c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
drivers/usb/core/usb.c
drivers/usb/core/usb.c
+4
-2
No files found.
drivers/usb/core/usb.c
View file @
7cd6abc5
...
@@ -155,8 +155,10 @@ int usb_register(struct usb_driver *new_driver)
...
@@ -155,8 +155,10 @@ int usb_register(struct usb_driver *new_driver)
* usb_deregister_dev() should be called when the driver is done with
* usb_deregister_dev() should be called when the driver is done with
* the minor numbers given out by this function.
* the minor numbers given out by this function.
*
*
* Returns a negative error code on failure and 0 on success, alone with
* Returns -ENODEV if CONFIG_USB_DYNAMIC_MINORS is not enabled in this
* a value that the driver should use in start_minor.
* kernel, -EINVAL if something bad happens with trying to register a
* device, and 0 on success, alone with a value that the driver should
* use in start_minor.
*/
*/
#ifdef CONFIG_USB_DYNAMIC_MINORS
#ifdef CONFIG_USB_DYNAMIC_MINORS
int
usb_register_dev
(
struct
usb_driver
*
new_driver
,
int
num_minors
,
int
*
start_minor
)
int
usb_register_dev
(
struct
usb_driver
*
new_driver
,
int
num_minors
,
int
*
start_minor
)
...
...
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