Changes in uspace/drv/uhci-hcd/hc.h [563ead9:02cacce] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/uhci-hcd/hc.h
r563ead9 r02cacce 37 37 38 38 #include <fibril.h> 39 #include <fibril_synch.h> 40 #include <adt/list.h> 39 41 #include <ddi.h> 40 42 43 #include <usbhc_iface.h> 41 44 #include <usb/host/device_keeper.h> 42 45 #include <usb/host/usb_endpoint_manager.h> 43 #include <usb/host/batch.h>44 46 47 #include "batch.h" 45 48 #include "transfer_list.h" 46 49 … … 151 154 */ 152 155 static inline hc_t * fun_to_hc(ddf_fun_t *fun) 153 { 154 assert(fun); 155 return fun->driver_data; 156 } 156 { return (hc_t*)fun->driver_data; } 157 157 #endif 158 158 /**
Note:
See TracChangeset
for help on using the changeset viewer.