Skip to content

Commit

Permalink
USB: composite.h: mark private struct members as private:
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Randy Dunlap authored and Greg Kroah-Hartman committed Jun 16, 2009
1 parent 5700f4c commit cac85a8
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions include/linux/usb/composite.h
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ struct usb_function {
void (*suspend)(struct usb_function *);
void (*resume)(struct usb_function *);

/* private: */
/* internals */
struct list_head list;
};
Expand Down Expand Up @@ -219,6 +220,7 @@ struct usb_configuration {

struct usb_composite_dev *cdev;

/* private: */
/* internals */
struct list_head list;
struct list_head functions;
Expand Down Expand Up @@ -321,6 +323,7 @@ struct usb_composite_dev {

struct usb_configuration *config;

/* private: */
/* internals */
struct usb_device_descriptor desc;
struct list_head configs;
Expand Down

0 comments on commit cac85a8

Please sign in to comment.