mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-09-18 22:14:16 +00:00
greybus: es2: fix kernel-doc warnings
Fix these kernel-doc complaints: ../drivers/greybus/es2.c:79: warning: bad line: ../drivers/greybus/es2.c💯 warning: cannot understand function prototype: 'struct es2_ap_dev ' es2.c:126: warning: Function parameter or member 'cdsi1_in_use' not described in 'es2_ap_dev' Cc: Johan Hovold <johan@kernel.org> Cc: Alex Elder <elder@kernel.org> Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Cc: greybus-dev@lists.linaro.org (moderated for non-subscribers) Signed-off-by: Randy Dunlap <rdunlap@infradead.org> Link: https://lore.kernel.org/r/20210415054338.2223-1-rdunlap@infradead.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
4615df5df2
commit
39d2a7898d
1 changed files with 3 additions and 3 deletions
|
@ -72,11 +72,11 @@ struct es2_cport_in {
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* es2_ap_dev - ES2 USB Bridge to AP structure
|
* struct es2_ap_dev - ES2 USB Bridge to AP structure
|
||||||
* @usb_dev: pointer to the USB device we are.
|
* @usb_dev: pointer to the USB device we are.
|
||||||
* @usb_intf: pointer to the USB interface we are bound to.
|
* @usb_intf: pointer to the USB interface we are bound to.
|
||||||
* @hd: pointer to our gb_host_device structure
|
* @hd: pointer to our gb_host_device structure
|
||||||
|
*
|
||||||
* @cport_in: endpoint, urbs and buffer for cport in messages
|
* @cport_in: endpoint, urbs and buffer for cport in messages
|
||||||
* @cport_out_endpoint: endpoint for for cport out messages
|
* @cport_out_endpoint: endpoint for for cport out messages
|
||||||
* @cport_out_urb: array of urbs for the CPort out messages
|
* @cport_out_urb: array of urbs for the CPort out messages
|
||||||
|
@ -85,7 +85,7 @@ struct es2_cport_in {
|
||||||
* @cport_out_urb_cancelled: array of flags indicating whether the
|
* @cport_out_urb_cancelled: array of flags indicating whether the
|
||||||
* corresponding @cport_out_urb is being cancelled
|
* corresponding @cport_out_urb is being cancelled
|
||||||
* @cport_out_urb_lock: locks the @cport_out_urb_busy "list"
|
* @cport_out_urb_lock: locks the @cport_out_urb_busy "list"
|
||||||
*
|
* @cdsi1_in_use: true if cport CDSI1 is in use
|
||||||
* @apb_log_task: task pointer for logging thread
|
* @apb_log_task: task pointer for logging thread
|
||||||
* @apb_log_dentry: file system entry for the log file interface
|
* @apb_log_dentry: file system entry for the log file interface
|
||||||
* @apb_log_enable_dentry: file system entry for enabling logging
|
* @apb_log_enable_dentry: file system entry for enabling logging
|
||||||
|
|
Loading…
Add table
Reference in a new issue