Composite: ./stm3210e-eval/src/stm32_composite.c

This commit is contained in:
Alan Carvalho de Assis 2017-07-14 09:10:18 -06:00 committed by Gregory Nutt
parent e485caced9
commit 1ea0368c18
1 changed files with 2 additions and 1 deletions

View File

@ -349,7 +349,8 @@ typedef FAR void (*cdcacm_callback_t)(enum cdcacm_event_e event);
#if defined(CONFIG_USBDEV_COMPOSITE) && defined(CONFIG_CDCACM_COMPOSITE)
struct usbdev_description_s;
int cdcacm_classobject(int minor, struct usbdev_description_s *devdesc,
struct usbdevclass_driver_s;
int cdcacm_classobject(int minor, FAR struct usbdev_description_s *devdesc,
FAR struct usbdevclass_driver_s **classdev);
#endif