Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Randy Dunlap and committed by
Greg Kroah-Hartman
cac85a8b 5700f4c5

+3
+3
include/linux/usb/composite.h
··· 124 124 void (*suspend)(struct usb_function *); 125 125 void (*resume)(struct usb_function *); 126 126 127 + /* private: */ 127 128 /* internals */ 128 129 struct list_head list; 129 130 }; ··· 220 219 221 220 struct usb_composite_dev *cdev; 222 221 222 + /* private: */ 223 223 /* internals */ 224 224 struct list_head list; 225 225 struct list_head functions; ··· 323 321 324 322 struct usb_configuration *config; 325 323 324 + /* private: */ 326 325 /* internals */ 327 326 struct usb_device_descriptor desc; 328 327 struct list_head configs;