Changes in uspace/drv/bus/usb/xhci/hc.c [bb97118:8300c72] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/xhci/hc.c
rbb97118 r8300c72 1 1 /* 2 * Copyright (c) 2025 Jiri Svoboda 2 3 * Copyright (c) 2018 Ondrej Hlavaty, Petr Manek, Jaroslav Jindrak, Jan Hrach, Michal Staruch 3 4 * All rights reserved. … … 746 747 } 747 748 749 /** 750 * Quiesce host controller. 751 */ 752 errno_t hc_quiesce(xhci_hc_t *hc) 753 { 754 hc_stop(hc); 755 usb_log_info("HC quiesced."); 756 return EOK; 757 } 758 748 759 unsigned hc_speed_to_psiv(usb_speed_t speed) 749 760 { … … 886 897 } 887 898 888 /* Issue configure endpoint command (sec 4.3.5). */899 /* Issue configure endpoint command (sec 4.3.5). */ 889 900 dma_buffer_t ictx_dma_buf; 890 901 if ((err = create_configure_ep_input_ctx(dev, &ictx_dma_buf))) … … 928 939 xhci_cmd_t cmd; 929 940 930 /* Issue configure endpoint command (sec 4.3.5). */941 /* Issue configure endpoint command (sec 4.3.5). */ 931 942 dma_buffer_t ictx_dma_buf; 932 943 errno_t err = create_configure_ep_input_ctx(dev, &ictx_dma_buf); … … 957 968 return EOK; 958 969 959 /* Issue configure endpoint command (sec 4.3.5) with the DC flag. */970 /* Issue configure endpoint command (sec 4.3.5) with the DC flag. */ 960 971 xhci_cmd_init(&cmd, XHCI_CMD_CONFIGURE_ENDPOINT); 961 972 cmd.slot_id = dev->slot_id; … … 981 992 xhci_cmd_t cmd; 982 993 983 /* Issue configure endpoint command (sec 4.3.5). */994 /* Issue configure endpoint command (sec 4.3.5). */ 984 995 dma_buffer_t ictx_dma_buf; 985 996 errno_t err = create_configure_ep_input_ctx(dev, &ictx_dma_buf); … … 1020 1031 return EOK; 1021 1032 1022 /* Issue configure endpoint command (sec 4.3.5). */1033 /* Issue configure endpoint command (sec 4.3.5). */ 1023 1034 dma_buffer_t ictx_dma_buf; 1024 1035 errno_t err = create_configure_ep_input_ctx(dev, &ictx_dma_buf);
Note:
See TracChangeset
for help on using the changeset viewer.