Changeset 77ad86c in mainline for uspace/lib/usbhost/include/usb/host/hcd.h
- Timestamp:
- 2012-06-01T19:00:32Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b713ff80
- Parents:
- 4e5dabf
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usbhost/include/usb/host/hcd.h
r4e5dabf r77ad86c 33 33 * 34 34 */ 35 35 36 #ifndef LIBUSBHOST_HOST_HCD_H 36 37 #define LIBUSBHOST_HOST_HCD_H … … 61 62 void (*ep_remove_hook)(hcd_t *, endpoint_t *); 62 63 }; 63 /*----------------------------------------------------------------------------*/ 64 64 65 /** Initialize hcd_t structure. 65 66 * Initializes device and endpoint managers. Sets data and hook pointer to NULL. … … 79 80 hcd->ep_remove_hook = NULL; 80 81 } 81 /*----------------------------------------------------------------------------*/ 82 82 83 /** Check registered endpoints and reset toggle bit if necessary. 83 84 * @param hcd hcd_t structure, non-null. … … 92 93 &hcd->ep_manager, target, (const uint8_t *)setup_data); 93 94 } 94 /*----------------------------------------------------------------------------*/ 95 95 96 /** Data retrieve wrapper. 96 97 * @param fun ddf function, non-null. … … 102 103 return fun->driver_data; 103 104 } 104 /*----------------------------------------------------------------------------*/ 105 105 106 extern usbhc_iface_t hcd_iface; 106 107 107 108 #endif 109 108 110 /** 109 111 * @}
Note:
See TracChangeset
for help on using the changeset viewer.