Changes in uspace/lib/drv/generic/remote_usbhc.c [fa48ebe:6427cf67] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/drv/generic/remote_usbhc.c
rfa48ebe r6427cf67 164 164 } 165 165 166 usb_speed_tspeed = DEV_IPC_GET_ARG1(*call);166 bool full_speed = DEV_IPC_GET_ARG1(*call); 167 167 168 int rc = usb_iface->reserve_default_address(device, speed);168 int rc = usb_iface->reserve_default_address(device, full_speed); 169 169 170 170 async_answer_0(callid, rc); … … 196 196 } 197 197 198 usb_speed_tspeed = DEV_IPC_GET_ARG1(*call);198 bool full_speed = DEV_IPC_GET_ARG1(*call); 199 199 200 200 usb_address_t address; 201 int rc = usb_iface->request_address(device, speed, &address);201 int rc = usb_iface->request_address(device, full_speed, &address); 202 202 if (rc != EOK) { 203 203 async_answer_0(callid, rc);
Note:
See TracChangeset
for help on using the changeset viewer.