Changeset bf793bf in mainline for uspace/drv/ehci-hcd/hc_iface.c
- Timestamp:
- 2011-05-28T17:59:59Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 70452dd4
- Parents:
- b59ec8c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/ehci-hcd/hc_iface.c
rb59ec8c rbf793bf 48 48 methodname, __FILE__, __LINE__) 49 49 50 /** Reserve default address.51 *52 * This function may block the caller.53 *54 * @param[in] fun Device function the action was invoked on.55 * @param[in] speed Speed of the device for which the default address is56 * reserved.57 * @return Error code.58 */59 static int reserve_default_address(ddf_fun_t *fun, usb_speed_t speed)60 {61 UNSUPPORTED("reserve_default_address");62 63 return ENOTSUP;64 }65 66 /** Release default address.67 *68 * @param[in] fun Device function the action was invoked on.69 * @return Error code.70 */71 static int release_default_address(ddf_fun_t *fun)72 {73 UNSUPPORTED("release_default_address");74 75 return ENOTSUP;76 }77 78 50 /** Found free USB address. 79 51 * … … 332 304 /** Host controller interface implementation for EHCI. */ 333 305 usbhc_iface_t ehci_hc_iface = { 334 .reserve_default_address = reserve_default_address,335 .release_default_address = release_default_address,336 306 .request_address = request_address, 337 307 .bind_address = bind_address,
Note:
See TracChangeset
for help on using the changeset viewer.