Changes in uspace/lib/usbhost/include/usb/host/hcd.h [56fd7cf:77ad86c] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usbhost/include/usb/host/hcd.h
r56fd7cf r77ad86c 98 98 * @return pointer cast to hcd_t*. 99 99 */ 100 static inline hcd_t * fun_to_hcd(ddf_fun_t *fun)100 static inline hcd_t * fun_to_hcd(const ddf_fun_t *fun) 101 101 { 102 return ddf_fun_data_get(fun); 102 assert(fun); 103 return fun->driver_data; 103 104 } 104 105
Note:
See TracChangeset
for help on using the changeset viewer.