Changeset d1582b50 in mainline for uspace/drv/bus/usb/xhci/hc.c
- Timestamp:
- 2020-12-14T20:41:53Z (4 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 02fe42e
- Parents:
- 1382446
- git-author:
- Jiri Svoboda <jiri@…> (2020-12-14 20:33:54)
- git-committer:
- Jiri Svoboda <jiri@…> (2020-12-14 20:41:53)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/xhci/hc.c
r1382446 rd1582b50 886 886 } 887 887 888 /* Issue configure endpoint command (sec 4.3.5). */888 /* Issue configure endpoint command (sec 4.3.5). */ 889 889 dma_buffer_t ictx_dma_buf; 890 890 if ((err = create_configure_ep_input_ctx(dev, &ictx_dma_buf))) … … 928 928 xhci_cmd_t cmd; 929 929 930 /* Issue configure endpoint command (sec 4.3.5). */930 /* Issue configure endpoint command (sec 4.3.5). */ 931 931 dma_buffer_t ictx_dma_buf; 932 932 errno_t err = create_configure_ep_input_ctx(dev, &ictx_dma_buf); … … 957 957 return EOK; 958 958 959 /* Issue configure endpoint command (sec 4.3.5) with the DC flag. */959 /* Issue configure endpoint command (sec 4.3.5) with the DC flag. */ 960 960 xhci_cmd_init(&cmd, XHCI_CMD_CONFIGURE_ENDPOINT); 961 961 cmd.slot_id = dev->slot_id; … … 981 981 xhci_cmd_t cmd; 982 982 983 /* Issue configure endpoint command (sec 4.3.5). */983 /* Issue configure endpoint command (sec 4.3.5). */ 984 984 dma_buffer_t ictx_dma_buf; 985 985 errno_t err = create_configure_ep_input_ctx(dev, &ictx_dma_buf); … … 1020 1020 return EOK; 1021 1021 1022 /* Issue configure endpoint command (sec 4.3.5). */1022 /* Issue configure endpoint command (sec 4.3.5). */ 1023 1023 dma_buffer_t ictx_dma_buf; 1024 1024 errno_t err = create_configure_ep_input_ctx(dev, &ictx_dma_buf);
Note:
See TracChangeset
for help on using the changeset viewer.