Changeset aae339e9 in mainline for uspace/lib/usb/src/usbdrv.c
- Timestamp:
- 2010-11-26T12:47:34Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 172c1682
- Parents:
- 0b749a3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usb/src/usbdrv.c
r0b749a3 raae339e9 75 75 usb_address_t usb_drv_get_my_address(int phone, device_t *dev) 76 76 { 77 return ENOTSUP; 77 ipcarg_t address; 78 int rc = async_req_1_1(phone, IPC_M_USBHC_GET_ADDRESS, 79 dev->handle, &address); 80 81 if (rc != EOK) { 82 return rc; 83 } 84 85 return (usb_address_t) address; 78 86 } 79 87
Note:
See TracChangeset
for help on using the changeset viewer.