Changes in uspace/lib/usb/src/hc.c [e280857:27ed734c] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usb/src/hc.c
re280857 r27ed734c 50 50 */ 51 51 int usb_hc_connection_initialize_from_device(usb_hc_connection_t *connection, 52 ddf_dev_t *device)52 const ddf_dev_t *device) 53 53 { 54 54 assert(connection); … … 174 174 * @return USB address or negative error code. 175 175 */ 176 usb_address_t usb_ hc_get_address_by_handle(devman_handle_t dev_handle)176 usb_address_t usb_get_address_by_handle(devman_handle_t dev_handle) 177 177 { 178 178 async_sess_t *parent_sess = … … 185 185 186 186 sysarg_t address; 187 int rc = async_req_2_1(exch, DEV_IFACE_ID(USB_DEV_IFACE), 188 IPC_M_USB_GET_ADDRESS, 189 dev_handle, &address); 187 int rc = async_req_1_1(exch, DEV_IFACE_ID(USB_DEV_IFACE), 188 IPC_M_USB_GET_MY_ADDRESS, &address); 190 189 191 190 async_exchange_end(exch);
Note:
See TracChangeset
for help on using the changeset viewer.