Changeset 0c00dac in mainline for uspace/lib/drv/generic/remote_usbhc.c
- Timestamp:
- 2011-02-18T13:36:52Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 026d6e2, 50ba203, b6c7da6
- Parents:
- ec59693 (diff), 6427cf67 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/drv/generic/remote_usbhc.c
rec59693 r0c00dac 165 165 return; 166 166 } 167 168 int rc = usb_iface->reserve_default_address(device); 167 168 bool full_speed = DEV_IPC_GET_ARG1(*call); 169 170 int rc = usb_iface->reserve_default_address(device, full_speed); 169 171 170 172 async_answer_0(callid, rc); … … 195 197 return; 196 198 } 199 200 bool full_speed = DEV_IPC_GET_ARG1(*call); 197 201 198 202 usb_address_t address; 199 int rc = usb_iface->request_address(device, &address);203 int rc = usb_iface->request_address(device, full_speed, &address); 200 204 if (rc != EOK) { 201 205 async_answer_0(callid, rc);
Note:
See TracChangeset
for help on using the changeset viewer.