Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/bus/usb/xhci/hc.c

    r8300c72 rbb97118  
    11/*
    2  * Copyright (c) 2025 Jiri Svoboda
    32 * Copyright (c) 2018 Ondrej Hlavaty, Petr Manek, Jaroslav Jindrak, Jan Hrach, Michal Staruch
    43 * All rights reserved.
     
    747746}
    748747
    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 
    759748unsigned hc_speed_to_psiv(usb_speed_t speed)
    760749{
     
    897886        }
    898887
    899         /* Issue configure endpoint command (sec 4.3.5).  */
     888        /* Issue configure endpoint command (sec 4.3.5). */
    900889        dma_buffer_t ictx_dma_buf;
    901890        if ((err = create_configure_ep_input_ctx(dev, &ictx_dma_buf)))
     
    939928        xhci_cmd_t cmd;
    940929
    941         /* Issue configure endpoint command (sec 4.3.5).  */
     930        /* Issue configure endpoint command (sec 4.3.5). */
    942931        dma_buffer_t ictx_dma_buf;
    943932        errno_t err = create_configure_ep_input_ctx(dev, &ictx_dma_buf);
     
    968957                return EOK;
    969958
    970         /* 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. */
    971960        xhci_cmd_init(&cmd, XHCI_CMD_CONFIGURE_ENDPOINT);
    972961        cmd.slot_id = dev->slot_id;
     
    992981        xhci_cmd_t cmd;
    993982
    994         /* Issue configure endpoint command (sec 4.3.5).  */
     983        /* Issue configure endpoint command (sec 4.3.5). */
    995984        dma_buffer_t ictx_dma_buf;
    996985        errno_t err = create_configure_ep_input_ctx(dev, &ictx_dma_buf);
     
    10311020                return EOK;
    10321021
    1033         /* Issue configure endpoint command (sec 4.3.5).  */
     1022        /* Issue configure endpoint command (sec 4.3.5). */
    10341023        dma_buffer_t ictx_dma_buf;
    10351024        errno_t err = create_configure_ep_input_ctx(dev, &ictx_dma_buf);
Note: See TracChangeset for help on using the changeset viewer.