USB: composite.h: mark private struct members as private:
Mark internal struct members as /* private: */ so that kernel-doc won't produce warnings about missing descriptions for them. Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com> Acked-by: David Brownell <dbrownell@users.sourceforge.net> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
5700f4c551
commit
cac85a8b4e
@@ -124,6 +124,7 @@ struct usb_function {
|
|||||||
void (*suspend)(struct usb_function *);
|
void (*suspend)(struct usb_function *);
|
||||||
void (*resume)(struct usb_function *);
|
void (*resume)(struct usb_function *);
|
||||||
|
|
||||||
|
/* private: */
|
||||||
/* internals */
|
/* internals */
|
||||||
struct list_head list;
|
struct list_head list;
|
||||||
};
|
};
|
||||||
@@ -219,6 +220,7 @@ struct usb_configuration {
|
|||||||
|
|
||||||
struct usb_composite_dev *cdev;
|
struct usb_composite_dev *cdev;
|
||||||
|
|
||||||
|
/* private: */
|
||||||
/* internals */
|
/* internals */
|
||||||
struct list_head list;
|
struct list_head list;
|
||||||
struct list_head functions;
|
struct list_head functions;
|
||||||
@@ -321,6 +323,7 @@ struct usb_composite_dev {
|
|||||||
|
|
||||||
struct usb_configuration *config;
|
struct usb_configuration *config;
|
||||||
|
|
||||||
|
/* private: */
|
||||||
/* internals */
|
/* internals */
|
||||||
struct usb_device_descriptor desc;
|
struct usb_device_descriptor desc;
|
||||||
struct list_head configs;
|
struct list_head configs;
|
||||||
|
Reference in New Issue
Block a user