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