Commit c6ba1c2a authored by Randy Dunlap's avatar Randy Dunlap Committed by Greg Kroah-Hartman

USB:: fix linux/usb.h kernel-doc warnings

Fix kernel-doc warnings in linux/usb.h:

Warning(include/linux/usb.h:185): No description found for parameter 'resetting_device'
Warning(include/linux/usb.h:1212): No description found for parameter 'stream_id'
Signed-off-by: default avatarRandy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 52af9545
...@@ -127,6 +127,8 @@ enum usb_interface_condition { ...@@ -127,6 +127,8 @@ enum usb_interface_condition {
* queued reset so that usb_cancel_queued_reset() doesn't try to * queued reset so that usb_cancel_queued_reset() doesn't try to
* remove from the workqueue when running inside the worker * remove from the workqueue when running inside the worker
* thread. See __usb_queue_reset_device(). * thread. See __usb_queue_reset_device().
* @resetting_device: USB core reset the device, so use alt setting 0 as
* current; needs bandwidth alloc after reset.
* *
* USB device drivers attach to interfaces on a physical device. Each * USB device drivers attach to interfaces on a physical device. Each
* interface encapsulates a single high level function, such as feeding * interface encapsulates a single high level function, such as feeding
...@@ -1015,6 +1017,7 @@ typedef void (*usb_complete_t)(struct urb *); ...@@ -1015,6 +1017,7 @@ typedef void (*usb_complete_t)(struct urb *);
* is a different endpoint (and pipe) from "out" endpoint two. * is a different endpoint (and pipe) from "out" endpoint two.
* The current configuration controls the existence, type, and * The current configuration controls the existence, type, and
* maximum packet size of any given endpoint. * maximum packet size of any given endpoint.
* @stream_id: the endpoint's stream ID for bulk streams
* @dev: Identifies the USB device to perform the request. * @dev: Identifies the USB device to perform the request.
* @status: This is read in non-iso completion functions to get the * @status: This is read in non-iso completion functions to get the
* status of the particular request. ISO requests only use it * status of the particular request. ISO requests only use it
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment