Changeset fa48ebe in mainline for uspace/lib/usb/src/hub.c
- Timestamp:
- 2011-02-18T16:08:12Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1dde2eb1
- Parents:
- 735eac3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usb/src/hub.c
r735eac3 rfa48ebe 56 56 */ 57 57 int usb_hc_reserve_default_address(usb_hc_connection_t *connection, 58 bool full_speed)58 usb_speed_t speed) 59 59 { 60 60 CHECK_CONNECTION(connection); … … 62 62 return async_req_2_0(connection->hc_phone, 63 63 DEV_IFACE_ID(USBHC_DEV_IFACE), 64 IPC_M_USBHC_RESERVE_DEFAULT_ADDRESS, full_speed);64 IPC_M_USBHC_RESERVE_DEFAULT_ADDRESS, speed); 65 65 } 66 66 … … 85 85 */ 86 86 usb_address_t usb_hc_request_address(usb_hc_connection_t *connection, 87 bool full_speed)87 usb_speed_t speed) 88 88 { 89 89 CHECK_CONNECTION(connection); … … 92 92 int rc = async_req_2_1(connection->hc_phone, 93 93 DEV_IFACE_ID(USBHC_DEV_IFACE), 94 IPC_M_USBHC_REQUEST_ADDRESS, full_speed,94 IPC_M_USBHC_REQUEST_ADDRESS, speed, 95 95 &address); 96 96 if (rc != EOK) {
Note:
See TracChangeset
for help on using the changeset viewer.