1 /*
2  * HCD URB scheduler interface
3  */
4 
5 #ifndef _HCD_SCHEDULE_H_
6 #define _HCD_SCHEDULE_H_
7 
8 #include <usbd/hcd_common.h>
9 
10 /* Makes external (device driver) URB schedule enabled */
11 int hcd_schedule_external_urb(hcd_urb *);
12 
13 /* Makes internal (HCD) URB schedule enabled */
14 int hcd_schedule_internal_urb(hcd_urb *);
15 
16 #endif /* !_HCD_SCHEDULE_H_ */
17