Changeset 2896ff6 in mainline for uspace/drv/bus/usb/xhci/rh.c
- Timestamp:
- 2017-10-19T20:52:35Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 913007f
- Parents:
- 1a9a72a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/xhci/rh.c
r1a9a72a r2896ff6 91 91 92 92 xhci_send_enable_slot_command(hc, &cmd); 93 if ((err = xhci_cmd_wait(&cmd , 100000)) != EOK)93 if ((err = xhci_cmd_wait(&cmd)) != EOK) 94 94 return err; 95 95 … … 155 155 cmd.slot_id = slot_id; 156 156 xhci_send_address_device_command(hc, &cmd, ictx); 157 if ((err = xhci_cmd_wait(&cmd , 100000)) != EOK)157 if ((err = xhci_cmd_wait(&cmd)) != EOK) 158 158 goto err_dctx; 159 159 … … 400 400 xhci_get_port_bandwidth_command(dev->hc, &cmd, ctx, speed); 401 401 402 int err = xhci_cmd_wait(&cmd , 100000);402 int err = xhci_cmd_wait(&cmd); 403 403 if(err != EOK) { 404 404 free(ctx);
Note:
See TracChangeset
for help on using the changeset viewer.