Changeset 56bdd9a4 in mainline for uspace/lib/usbdev/src/pipes.c
- Timestamp:
- 2011-11-25T15:20:04Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 02fc5c4
- Parents:
- 317a463
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usbdev/src/pipes.c
r317a463 r56bdd9a4 54 54 static usb_address_t get_my_address(async_sess_t *sess, const ddf_dev_t *dev) 55 55 { 56 assert(sess); 56 57 async_exch_t *exch = async_exchange_begin(sess); 57 58 sysarg_t address; 59 int rc = async_req_1_1(exch, DEV_IFACE_ID(USB_DEV_IFACE), 60 IPC_M_USB_GET_MY_ADDRESS, &address); 61 58 if (!exch) 59 return ENOMEM; 60 61 usb_address_t address; 62 const int ret = usb_get_my_address(exch, &address); 63 62 64 async_exchange_end(exch); 63 64 if (rc != EOK) 65 return rc; 66 67 return (usb_address_t) address; 65 66 return (ret == EOK) ? address : ret; 68 67 } 69 68 … … 71 70 * 72 71 * @param device Device in question. 73 * @return Interface number (negative codemeans any).72 * @return Error code (ENOTSUP means any). 74 73 */ 75 74 int usb_device_get_assigned_interface(const ddf_dev_t *device) … … 80 79 IPC_FLAG_BLOCKING); 81 80 if (!parent_sess) 82 return -1;83 81 return ENOMEM; 82 84 83 async_exch_t *exch = async_exchange_begin(parent_sess); 85 86 sysarg_t iface_no; 87 int rc = async_req_1_1(exch, DEV_IFACE_ID(USB_DEV_IFACE), 88 IPC_M_USB_GET_MY_INTERFACE, &iface_no); 89 90 async_exchange_end(exch); 91 async_hangup(parent_sess); 92 93 if (rc != EOK) 94 return -1; 95 96 return (int) iface_no; 84 if (!exch) { 85 async_hangup(parent_sess); 86 return ENOMEM; 87 } 88 89 int iface_no; 90 const int ret = usb_get_my_interface(exch, &iface_no); 91 92 return ret == EOK ? iface_no : ret; 97 93 } 98 94
Note:
See TracChangeset
for help on using the changeset viewer.